import type { PluginAgentContribution } from "../types/agent"; export declare class AgentRegistry { private readonly agents; register(name: string, agent: PluginAgentContribution): void; get(name: string): PluginAgentContribution | undefined; getAll(): Map; get size(): number; }