import sqlite3 from 'sqlite3'; export interface DbInterface { run(sql: string, params?: any[]): Promise; get(sql: string, params?: any[]): Promise; all(sql: string, params?: any[]): Promise; exec(sql: string): Promise; } export declare function promisifyDb(db: sqlite3.Database): DbInterface; export declare function initializeDatabase(): Promise; export declare function getDatabase(): sqlite3.Database; export declare function getPromisifiedDb(): DbInterface;