export declare const BUILTIN_VVOC_PRESET_REGISTRY: { readonly "vv-openai": { readonly description: "Starter OpenAI role assignments for built-in vvoc roles."; readonly agents: { readonly default: "openai/gpt-5.4"; readonly smart: "openai/vv-gpt-5.5-xhigh"; readonly fast: "openai/gpt-5.4-mini"; readonly vision: "openai/gpt-5.4"; }; }; readonly "vv-zai": { readonly description: "Starter ZAI role assignments for built-in vvoc roles."; readonly agents: { readonly default: "zai-coding-plan/glm-5-turbo"; readonly smart: "zai-coding-plan/glm-5.1"; readonly fast: "zai-coding-plan/glm-4.5-airx"; readonly vision: "zai-coding-plan/glm-4.6v"; }; }; readonly "vv-minimax": { readonly description: "Starter MiniMax role assignments for built-in vvoc roles."; readonly agents: { readonly default: "minimax-coding-plan/MiniMax-M2.7"; readonly smart: "minimax-coding-plan/MiniMax-M2.7"; readonly fast: "minimax-coding-plan/MiniMax-M2.1"; readonly vision: "minimax-coding-plan/MiniMax-M2.7"; }; }; readonly "vv-deepseek": { readonly description: "Starter DeepSeek role assignments for built-in vvoc roles."; readonly agents: { readonly default: "deepseek/deepseek-v4-flash"; readonly smart: "deepseek/deepseek-v4-pro"; readonly fast: "deepseek/deepseek-v4-flash"; readonly vision: "deepseek/deepseek-v4-pro"; }; }; readonly "vv-osovv": { readonly description: "Personal osovv role assignments (deepseek + stepfun + minimax)."; readonly agents: { readonly default: "deepseek/deepseek-v4-flash"; readonly fast: "stepfun/step-3.5-flash"; readonly smart: "deepseek/deepseek-v4-pro"; readonly vision: "minimax-coding-plan/MiniMax-M2.7"; }; }; }; export type BuiltInVvocPresetName = keyof typeof BUILTIN_VVOC_PRESET_REGISTRY; export declare const BUILTIN_VVOC_PRESET_NAMES: readonly ("vv-openai" | "vv-zai" | "vv-minimax" | "vv-deepseek" | "vv-osovv")[]; export declare function isBuiltinVvocPresetName(name: string): name is BuiltInVvocPresetName;