import { type ApplierType } from '../../ui-kit/FormField/constants'; import { type Option } from '../../ui-kit/Select/Option'; import { type FieldDef } from './ApplicationFormContent'; export interface FormState { typeForm?: Option | string; surname?: string; name?: string; middleName?: string; birthday?: Date; phone?: string; secondaryPhone?: string; email?: string; acquiringType?: Option; serviceType?: Option; vedTypes?: string; inn?: string; region?: Option; onlineCheckout?: boolean; posTerminal?: boolean; term?: number; amount?: number; annualRevenue?: string; consentDataProcessing?: boolean; addressRetail?: Option; sufferedFrom?: Option; situationDescription?: string; applierType?: ApplierType; isPremium?: boolean; partnerSymbolCode?: string; dadataPartyInnSelect?: Option; dadataPartyNameSelect?: Option; } export declare const getInitialFormState: (inputs: FieldDef[], typeForm?: string) => FormState;