import type { Pool } from "pg"; import type { Executor } from "../pg.js"; export interface PGConfig { initPool(): Pool; getSchemaVersion(executor: Executor): Promise; } export declare function getDBConfig(): PGConfig;