import type { Knex } from 'knex'; import type { DbOptionsType, DbTablesType } from './types'; export declare class Db { db: Knex; dbWrite: Knex; dbTables: DbTablesType; private migrationDirs; private intervalDbCheck?; constructor(options?: DbOptionsType); waitDb(): Promise; checkDb(): Promise; destroy(): Promise; private introspectTables; private parseSimpleCheckConstraint; } //# sourceMappingURL=Db.d.ts.map