import { ToolResult } from "../types/index.js"; import { ToolDiscovery } from "./tool-discovery.js"; export declare class InternetTool implements ToolDiscovery { private agent; setAgent(agent: any): void; getHandledToolNames(): string[]; /** * Download a file < 10MB from the Internet. */ downloadFile(url: string): Promise; }