import { ID, MatchCandidate } from '@zeniai/client-epic-state'; interface PossibleMatchesListProps { /** Used to scope the radio group name so multiple receipt cards on the page stay independent. */ attachmentId: ID; candidates: MatchCandidate[]; selectedTransactionId: ID | null; interactionLocked?: boolean; onSelectionChange: (transactionId: ID, transactionType: string) => void; } export declare const PossibleMatchesList: ({ attachmentId, candidates, selectedTransactionId, interactionLocked, onSelectionChange, }: PossibleMatchesListProps) => import("react/jsx-runtime").JSX.Element; export {};