interface MigrateOptions { /** Path to the config file to migrate. Defaults to auto-detected config. */ config?: string; /** Write migrated config to a new file instead of overwriting the original. */ out?: string; /** Perform a dry run — print changes without writing. */ dryRun?: boolean; } type RawConfig = Record; /** * Apply all structural migrations to a JSON config object. * * Returns the transformed config and a list of change descriptions. */ export declare function applyMigrations(original: RawConfig): { migrated: RawConfig; changes: string[]; }; /** * Migrate a v7 design-lint configuration to v8 format. * * @param options - Codemod options. */ export declare function migrateConfig(options: MigrateOptions): void; export {}; //# sourceMappingURL=migrate.d.ts.map