import { InvoicingMigrationSession } from '@zeniai/client-epic-state'; export interface InvoicingDataImportMigratePageProps { chargebeeConnected: boolean; chargebeeConnectorAvailable: boolean; connecting: boolean; retrying: boolean; starting: boolean; uploading: boolean; chargebeeSite?: string; connectError?: string; session?: InvoicingMigrationSession; onDownloadTemplates: () => void; onFetchFromChargebee: () => void; onGoToIntegrations: () => void; onGoToOverview: () => void; onRetry: () => void; onSaveLater: () => void; onStartImport: () => void; onUpload: (files: File[]) => void; onBack?: () => void; onViewDetails?: () => void; } export declare function InvoicingDataImportMigratePage({ chargebeeConnected, chargebeeConnectorAvailable, chargebeeSite, connectError, connecting, retrying, session, starting, uploading, onBack, onDownloadTemplates, onFetchFromChargebee, onGoToIntegrations, onGoToOverview, onRetry, onSaveLater, onStartImport, onUpload, onViewDetails, }: Readonly): import("react/jsx-runtime").JSX.Element; export default InvoicingDataImportMigratePage;