import { AllowedValueWithCode, FetchState, ZeniDate } from '@zeniai/client-epic-state'; export interface DialogAction { onCancelClick?: () => void; onProceedClick?: () => void; } export declare function BusinessInfoPopup({ selectedIndustry, allIndustries, saveDetailsFetchState, incDate, onSubmitBusinessInfo, onCancel, }: { allIndustries: AllowedValueWithCode[]; saveDetailsFetchState: FetchState; incDate?: ZeniDate; selectedIndustry?: string; onCancel?: () => void; onSubmitBusinessInfo?: (industry: string, incDate: Date) => void; }): import("react/jsx-runtime").JSX.Element;