export declare class SQLiteDriver { private path; private logger; private dbPromise; constructor(path: string); getDB(): Promise; executeAll(sql: string, params: any[]): Promise; executeSql(sql: string): Promise; destroyDatabase(): Promise; closeConnection(): Promise; }