import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type AnthropicThinkingBlock = { signature: string; thinking: string; type: "thinking"; }; /** @internal */ export declare const AnthropicThinkingBlock$inboundSchema: z.ZodType; export declare function anthropicThinkingBlockFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=anthropicthinkingblock.d.ts.map