import { AxiosError } from 'axios'; import { FC } from 'react'; interface SignUpFormProps { onSignUpSuccess: (res: IProfileData) => void; onGetProfileDataSuccess?: (res: any) => void; onGetProfileDataError?: (e: AxiosError) => void; logo?: string; } export declare const SignUpForm: FC; export {};