import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { AnthropicCaller } from "./anthropiccaller.js"; import { AnthropicWebFetchContent } from "./anthropicwebfetchcontent.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type AnthropicWebFetchToolResult = { caller: AnthropicCaller; content: AnthropicWebFetchContent; toolUseId: string; type: "web_fetch_tool_result"; }; /** @internal */ export declare const AnthropicWebFetchToolResult$inboundSchema: z.ZodType; export declare function anthropicWebFetchToolResultFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=anthropicwebfetchtoolresult.d.ts.map