import type { KlawConfig } from "../../config/types.klaw.js"; import { type LookupFn } from "../../infra/net/ssrf.js"; import type { RuntimeWebFetchMetadata } from "../../secrets/runtime-web-tools.types.js"; import type { AnyAgentTool } from "./common.js"; export declare function createWebFetchTool(options?: { config?: KlawConfig; sandboxed?: boolean; runtimeWebFetch?: RuntimeWebFetchMetadata; lateBindRuntimeConfig?: boolean; lookupFn?: LookupFn; }): AnyAgentTool | null;