/** * BuiltinAgents — The 4 hardcoded agents extracted from agent-router.ts */ import type { AgentConfig } from "./AgentConfig.ts"; export declare const BUILTIN_AGENTS: AgentConfig[]; /** * Simple keyword → capability mapping for built-in routing. * Used when capabilities are not explicitly declared on agents. */ export declare const KEYWORD_TO_CAPABILITY: Record;