import type { PoolConfig } from "pg"; export declare function isLocalPostgresHost(hostname: string): boolean; export declare function buildPgPoolConfig(connectionString: string): PoolConfig; export declare class PgAdapterAsync { private readonly pool; constructor(connectionString: string); run(sql: string, ...params: unknown[]): Promise<{ changes: number; }>; all(sql: string, ...params: unknown[]): Promise; close(): Promise; } //# sourceMappingURL=remote-storage.d.ts.map