import type { MigrationEntry } from "../../db/migrations.js"; /** * Additive-only migrations for Observational Memory. * * These run under their OWN bookkeeping table (`_observational_memory_migrations`) * so the version space is independent of core/org/context-xray — see * `db/migrations.ts` for why each module owns its own version space. * * Strictly additive: a new table plus its hot-path indexes. Never drops, * renames, or destructively alters anything. */ export declare const OBSERVATIONAL_MEMORY_MIGRATIONS: MigrationEntry[]; //# sourceMappingURL=migrations.d.ts.map