import type { AgentDefinition } from "./agent-registry.js"; import type { AgentRegistry } from "./agent-registry.js"; /** 内置 agent 定义(对齐 Claude Code builtInAgents)。 */ export declare const BUILTIN_AGENTS: AgentDefinition[]; /** * 把内置 agent 预注册到 AgentRegistry。 * 调用方在初始化时调此函数,之后 createSubagentTool 的 subagentType 参数可用 "explore"/"plan" 等。 */ export declare function registerBuiltinAgents(registry: AgentRegistry): void;