import type { Client } from 'pg'; import type { SQLExecutor } from '@netlify/dev'; export declare class PgClientExecutor implements SQLExecutor { #private; constructor(client: Client); exec(sql: string): Promise; query(sql: string, params?: unknown[]): Promise<{ rows: T[]; }>; transaction(fn: (tx: SQLExecutor) => Promise): Promise; } //# sourceMappingURL=pg-client-executor.d.ts.map