import * as React from "react";
interface LoginFormProps {
    email?: string;
    password?: string;
    google?: boolean;
    login: {
        url: string;
        action: (remember: boolean) => boolean;
    };
    register?: {
        url: string;
    };
    dev?: boolean;
}
declare const LoginForm: React.FC<LoginFormProps>;
export { LoginForm };
