import { type AppliedPersistenceMigration } from "@arnilo/prism/testing/persistence-schema"; import type { Pool, PoolClient } from "pg"; type Queryable = Pick | PoolClient; export declare function applyPostgresMigrations(pool: Pool, schema: string): Promise; export declare function assertPostgresSchemaReady(source: Queryable, schema: string): Promise; export declare function verifyMigrationIdempotency(pool: Pool, schema: string): Promise; export {};