import { AxiosError } from 'axios'; import { FC } from 'react'; interface IRegistrationProps { formFields?: Array; additionalFieldAttribute?: IFieldAttribute; registrationType: string; onGetCountriesSuccess?: (res: any) => void; onGetCountriesError?: (e: AxiosError) => void; onRegisterAccountSuccess?: (res: any) => void; onRegisterAccountError?: (e: AxiosError) => void; onGetStatesSuccess?: (res: any) => void; onGetStatesError?: (e: AxiosError) => void; customerEmail: string; } export declare const RegistrationForm: FC; export {};