import { ReactNode, FC } from 'react'; export interface ILoginProps { className?: string; backImageUrl?: string; isLeftAndRight?: boolean; background?: string; slogan?: string; logo?: string; children: ReactNode; statement?: ReactNode; } declare const Login: FC; export default Login;