/** * Web tools — `web_fetch` and `web_search` using global `fetch`. * * Mirrors `_harness/_web.py`. The Python harness reuses ADK's * `UrlContextTool`/`GoogleSearchTool` when available; the TS version * uses Node 20+'s built-in `fetch` and skips the search provider stub * (callers should pass their own `searchProvider`). */ import { type SandboxPolicy } from "./sandbox.js"; import { type HarnessTool } from "./types.js"; export interface WebOptions { search?: boolean; searchProvider?: HarnessTool | null; maxBytes?: number; timeoutMs?: number; } export declare function webTools(sandbox: SandboxPolicy, opts?: WebOptions): HarnessTool[]; //# sourceMappingURL=web.d.ts.map