import { FC } from 'react'; import { LoginClassesType } from './types'; export declare type LoginPropsType = { classes?: LoginClassesType; resetPassword?: any; loadingComponent: any; passwordViewIcon?: any; passwordHideIcon?: any; onErrorMsg: (msg: string) => void; onCompletedMsg?: (msg: string) => void; redirectTo?: string; withVerification?: boolean; verificationComponent?: any; isVerified?: boolean; }; declare const Login: FC; export default Login;