import type { EntityRegistry, NormalizedStoreLogger, PostgresStoreClient } from "../../types.js"; import type { StoreRuntimePostgres, StoreRuntimePostgresOptions } from "./types.js"; declare function createRuntimePostgres(options: StoreRuntimePostgresOptions | undefined, entities: EntityRegistry, logger: NormalizedStoreLogger | null): { client: PostgresStoreClient; postgres: StoreRuntimePostgres; schema: string; }; export { createRuntimePostgres, }; //# sourceMappingURL=postgres.d.ts.map