import React from 'react';
import { Neo4jScheme, Neo4jConfig } from '../neo4j-config.interface';
interface LoginProps {
    error?: Error;
    onSubmit: (config: Neo4jConfig) => void;
    scheme?: Neo4jScheme;
    host?: string;
    port?: string | number;
    username?: string;
    password?: string;
    database?: string;
    showHost?: boolean;
    showActive?: boolean;
    showProject?: boolean;
    showDatabase?: boolean;
    title?: React.ReactNode | React.ReactNode[] | null;
    logo?: React.ReactNode | React.ReactNode[] | null;
    details?: React.ReactNode | React.ReactNode[] | null;
    footer?: React.ReactNode | React.ReactNode[] | null;
}
export declare const Login: React.FC<LoginProps>;
export {};
