import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ReasoningText = { /** * The text of the reasoning. */ text: string; type?: "reasoning_text" | undefined; }; /** @internal */ export declare const ReasoningText$inboundSchema: z.ZodType; /** @internal */ export type ReasoningText$Outbound = { text: string; type: "reasoning_text"; }; /** @internal */ export declare const ReasoningText$outboundSchema: z.ZodType; export declare function reasoningTextToJSON(reasoningText: ReasoningText): string; export declare function reasoningTextFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=reasoningtext.d.ts.map