import { SqlSlowMonitor } from '../monitor'; type PgPoolOrClient = any; /** * Wraps a `pg` Pool or Client to intercept query execution timing. * * Works by monkey-patching the `query` method, so no additional * configuration on the pool is required. * * @param pgClient A `pg.Pool` or `pg.Client` instance * @param monitor The SqlSlowMonitor to forward events to */ export declare function attachPgAdapter(pgClient: PgPoolOrClient, monitor: SqlSlowMonitor): void; export {}; //# sourceMappingURL=pgAdapter.d.ts.map