import { AccountReconciliationByAccount, FetchStateAndError } from '@zeniai/client-epic-state'; export interface ExcludedAccountReconDetailsDrawerPageProps { excludedAccountReconciliation: AccountReconciliationByAccount; includeAccountFetch: FetchStateAndError; isReconV3Enabled?: boolean; onIncludeIntoReconciliation: () => void; onDismissClick?: () => void; } export default function ExcludedAccountReconDetailsDrawerPage({ excludedAccountReconciliation, includeAccountFetch, isReconV3Enabled, onDismissClick, onIncludeIntoReconciliation, }: Readonly): import("react/jsx-runtime").JSX.Element;