import { ToolResult } from "../types/index.js"; import { ToolDiscovery } from "./tool-discovery.js"; export declare class IntrospectTool implements ToolDiscovery { private agent; setAgent(agent: any): void; /** * Introspect available tools and system information */ introspect(target: string): Promise; getHandledToolNames(): string[]; }