type Config = { drivers: Partial; }; type Drivers = { pg: unknown; sqlite3: unknown; 'better-sqlite3': unknown; mysql: unknown; mysql2: unknown; oracledb: unknown; tedious: unknown; }; declare const drivers: Drivers; /** * Configures `Knex` module. Allows you to specify * which module is used for each database driver. * * @example * import { config } from '@nodeweb/knex/config'; * import pg from '@nodeweb/pg'; * * config({ * drivers: { * pg, * }, * }); */ declare function config(config: Config): void; export { type Config, type Drivers, config, drivers };