import { AccountReconciliationByAccount, ReconciliationStatusCodeType } from '@zeniai/client-epic-state'; type StatusProps = { accountRecon: AccountReconciliationByAccount; isLoading: boolean; }; /** V2 list row — Review lives in AccountReconDetailsDrawerPageV2, not the AI Progress column. */ export declare function ShowStatusForBankConnectionV2({ accountRecon, isLoading, }: Readonly): import("react/jsx-runtime").JSX.Element; export declare function ShowStatusForStatementConnectionV2({ accountRecon, isLoading, }: Readonly): import("react/jsx-runtime").JSX.Element; /** When true, AI Progress shows the V1 status (Reconciled / Books closed / etc.) instead of the bar. */ export declare function shouldShowReconciledTagInMatchProgress(reconciliationStatusCode?: ReconciliationStatusCodeType): boolean; export declare function shouldShowMatchProgressBar(matchTotal: number, reconciliationStatusCode?: ReconciliationStatusCodeType): boolean; export {};