"""Dedup match-group cards and review pipeline. The interactive dedup-review surface — config panel, match-group cards, results summary, and apply-decisions glue. This is the largest single chunk of the GUI by line count; isolating it in a seam module means a non-dedup SKU never has to import it (and never has to drag in ``src.core.dedup`` along the way). """ from __future__ import annotations from ._legacy import ( apply_review_decisions, config_panel, match_group_card, results_summary, ) __all__ = [ "apply_review_decisions", "config_panel", "match_group_card", "results_summary", ]