import { ThemeOptions } from '@mui/material'; import { CSSProperties } from '@mui/styles'; import { AxiosError } from 'axios'; import { FC } from 'react'; import { IForgotPasswordProps } from '../forgotPasswordModal'; import { Props } from '../loginModal'; interface IPreRegistrationProps extends Props, IForgotPasswordProps { eventId: string | number; formFields?: IFormFieldsSection[]; additionalFieldAttribute?: IFieldAttribute; isPreregistrationStarted: boolean; onGetCountriesSuccess?: (res: any) => void; onGetCountriesError?: (e: AxiosError) => void; onConfirmationSuccess?: (res: any) => void; onConfirmationError?: (e: AxiosError) => void; onLoginSuccess?: (res: any) => void; themeOptions?: ThemeOptions & { input?: CSSProperties; checkbox?: CSSProperties; }; } export declare const PreRegistration: FC; export {};