import type { Knex } from 'knex'; export declare const db: Knex; export declare function useDB(name: string, config?: { client?: string; host?: string; port?: number; user?: string; password?: string; database?: string; }): Knex; export declare function closeAllDB(): Promise;