import type { PgDriver, PgQueryResult } from '@struktoai/mirage-core/core/postgres/_driver'; import type { PostgresConfigResolved } from '@struktoai/mirage-core/resource/postgres/config'; interface PgPoolLike { query: (sql: string, params?: readonly unknown[]) => Promise<{ rows: unknown[]; rowCount: number | null; }>; end: () => Promise; } export declare class PostgresStore implements PgDriver { readonly config: PostgresConfigResolved; private poolPromise; constructor(config: PostgresConfigResolved); query>(sql: string, params?: readonly unknown[]): Promise>; databaseName(): Promise; close(): Promise; private _pool; protected _connect(): Promise; } export {}; //# sourceMappingURL=store.d.ts.map