import { Agent } from './Agent.js'; import type { AgentContext, AgentStreamPart, TriageAgentConfig } from '../types/index.js'; export declare class TriageAgent extends Agent { private triageConfig; private routes; private defaultAgent?; constructor(config: TriageAgentConfig); run(_input: string, context: AgentContext): AsyncGenerator; private buildRoutingPrompt; /** * Builds the system prompt with working memory appended. * Mirrors the old BaseAgent.buildSystemPrompt() behavior. */ private buildSystemPromptWithMemory; private createHandoffTool; }