import { Knex } from 'knex'; export type knexConfig = { client?: string; host?: string; port?: number; user?: string; password?: string; database?: string; }; export declare function createKnex(config: knexConfig): Knex;