/**
 * Model version migration map: old full model strings → new full model strings.
 * Used to auto-upgrade hardcoded model versions in user configs when the plugin
 * bumps to newer model versions.
 *
 * Keys are full "provider/model" strings. Only openai and anthropic entries needed.
 *
 * Only include genuinely retired/superseded models here. Do NOT add mappings
 * for current, user-selectable variants — `gpt-5.3-codex` is the canonical
 * codex powerhouse referenced in docs/guide/agent-model-matching.md and is
 * NOT a deprecated alias for `gpt-5.4`. Auto-rewriting an explicit user
 * choice silently broke configurations (#3777).
 */
export declare const MODEL_VERSION_MAP: Record<string, string>;
export declare function migrateModelVersions(configs: Record<string, unknown>, appliedMigrations?: Set<string>): {
    migrated: Record<string, unknown>;
    changed: boolean;
    newMigrations: string[];
};
