import { InvoicingDunningAttempt, InvoicingDunningCase } from '@zeniai/client-epic-state'; export interface InvoicingDunningDetailPageProps { caseId: string; isLoading: boolean; /** Dunning attempts from the linked invoice, newest first in the timeline. */ dunningAttempts?: InvoicingDunningAttempt[]; dunningCase?: InvoicingDunningCase; /** True while a dunning action POST is in flight. */ isRunningAction?: boolean; onBack?: () => void; onCancel?: () => void; onInvoiceClick?: (invoiceId: string) => void; onResolve?: () => void; onResume?: () => void; onRetry?: () => void; onSendEmail?: () => void; } export declare function InvoicingDunningDetailPage({ caseId, dunningAttempts, dunningCase, isLoading, isRunningAction, onBack, onCancel, onInvoiceClick, onResolve, onResume, onRetry, onSendEmail, }: Readonly): import("react/jsx-runtime").JSX.Element; export default InvoicingDunningDetailPage;