export interface ProfitabilityExportFilters { from?: string; to?: string; } export interface ProfitabilityPageProps { className?: string; /** Wire to download the departure CSV for the active date range (accountant sharing). */ onExportDepartures?: (filters: ProfitabilityExportFilters) => void; /** Wire to download the product CSV for the active date range. */ onExportProducts?: (filters: ProfitabilityExportFilters) => void; } export declare function ProfitabilityPage({ className, onExportDepartures, onExportProducts, }?: ProfitabilityPageProps): import("react").JSX.Element;