import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { AnthropicCaller } from "./anthropiccaller.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type AnthropicToolUseBlock = { caller: AnthropicCaller; id: string; input?: any | undefined; name: string; type: "tool_use"; }; /** @internal */ export declare const AnthropicToolUseBlock$inboundSchema: z.ZodType; export declare function anthropicToolUseBlockFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=anthropictooluseblock.d.ts.map