/** * CMS Schema Migrator — thin wrapper over the shared pg-migrator. * * @module */ export type { MigrationEntry } from "./pg-migrator.js"; /** * Run all pending CMS migrations against the given schema. * * @param pool - node-postgres pool * @param schema - target schema name (e.g. "copilot_sessions") */ export declare function runCmsMigrations(pool: any, schema: string): Promise; //# sourceMappingURL=cms-migrator.d.ts.map