import { InvoicingDashboardSummary } from '@zeniai/client-epic-state'; export interface OverviewAlertCardsProps { currencyCode?: string; summary?: InvoicingDashboardSummary; onViewInvoices: () => void; onViewPayments: () => void; } /** * Overview "Row 4" alert cards — Failed Payments, Upcoming Invoices, and Past * Due Invoices. Extracted from InvoicingOverviewPage so the page composes panels * instead of inlining them. */ export declare function OverviewAlertCards({ currencyCode, onViewInvoices, onViewPayments, summary, }: Readonly): import("react/jsx-runtime").JSX.Element; export default OverviewAlertCards;