import { ConnectionProvider } from './ConnectionProvider'; import { Config } from 'neo4j-driver'; import { Connection } from './Connection'; import { DatabaseType } from './DatabaseType'; export declare class NeptuneConnectionProvider implements ConnectionProvider { readonly name: string; readonly type: DatabaseType; readonly host: string; readonly port: number; readonly protocol: string; readonly config: Config; private driver; constructor(name: string, type: DatabaseType, host: string, port: number, protocol: string, config: Config); connect(): Promise; end(): Promise; }