import type { OpenClawConfig } from "../../config/types.openclaw.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?: OpenClawConfig; sandboxed?: boolean; runtimeWebFetch?: RuntimeWebFetchMetadata; lateBindRuntimeConfig?: boolean; lookupFn?: LookupFn; }): AnyAgentTool | null;