import { type Knex } from "knex"; type Connection = { host: string; port: number; password: string; user: string; database: string; }; declare const useTestKnex: () => readonly [() => Knex, string, () => Connection]; export default useTestKnex;