export declare abstract class Database { abstract name: string; connection: null | any; protected config: any; protected debug: any; protected adapter: any; constructor(config?: {}, debug?: boolean); abstract connect(): Promise; abstract close(): any; }