import { Agent } from '@strands-agents/sdk'; /** * Simple in-memory registry for multi-agent orchestration. * Allows tools to discover other agents in the current session (main + subagents). */ declare class AgentRegistry { private agents; private mainId; register(id: string, agent: Agent, isMain?: boolean): void; unregister(id: string): void; get(id: string): Agent | undefined; main(): Agent | undefined; list(): { id: string; agent: Agent; main: boolean; }[]; count(): number; } declare const agentRegistry: AgentRegistry; export { agentRegistry };