import React from "react";
import { LogoType } from "../types";
export interface LoginPageProps {
    title?: string;
    logo?: LogoType;
    logoHeight?: number | string;
    form?: React.ElementType;
}
export declare const LoginPage: React.FC<LoginPageProps>;
export default LoginPage;
