import type { Migration } from './types.js'; export type RegisteredMigration = { source: string; migration: Migration; }; export declare function registerMigration(source: string, migration: Migration): void; export declare function unregisterMigrationsForSource(source: string): void; export declare function listRegisteredMigrations(): RegisteredMigration[];