export declare type Neo4jScheme = 'neo4j' | 'neo4j+s' | 'neo4j+scc' | 'bolt' | 'bolt+s' | 'bolt+scc';
export interface Neo4jConfig {
    scheme: Neo4jScheme;
    host: string;
    port: number | string;
    username: string | undefined;
    password: string | undefined;
    database?: string | undefined;
}
export declare const LOCAL_STORAGE_KEY = "$$charts::config";
