import { type MigrationSource } from './source.js'; export declare class UnknownSourceError extends Error { constructor(name: string); } export declare function getSource(name: string): MigrationSource; export declare function listSources(): string[];