import './style.css'; import { AxiosError } from 'axios'; import { FC } from 'react'; export interface Props { onClose: () => void; onLogin: (res: IProfileData) => void; alreadyHasUser?: boolean; userExpired?: boolean; onAuthorizeSuccess?: (res: any) => void; onAuthorizeError?: (e: AxiosError) => void; onGetProfileDataSuccess?: (res: any) => void; onGetProfileDataError?: (e: AxiosError) => void; onForgotPassword?: () => void; onSignup?: () => void; modalClassname?: string; logo?: string; showForgotPasswordButton?: boolean; showSignUpButton?: boolean; showPoweredByImage?: boolean; registerUrl?: string; } export declare const LoginModal: FC;