import * as z from "zod/v4"; import * as discriminatedUnionTypes from "../types/discriminatedUnion.js"; import { Result as SafeParseResult } from "../types/fp.js"; import { AnthropicWebFetchBlock } from "./anthropicwebfetchblock.js"; import { AnthropicWebFetchToolResultError } from "./anthropicwebfetchtoolresulterror.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type AnthropicWebFetchContent = AnthropicWebFetchBlock | AnthropicWebFetchToolResultError | discriminatedUnionTypes.Unknown<"type">; /** @internal */ export declare const AnthropicWebFetchContent$inboundSchema: z.ZodType; export declare function anthropicWebFetchContentFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=anthropicwebfetchcontent.d.ts.map