import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ReasoningText = { type: "reasoning_text"; text: string; }; /** @internal */ export declare const ReasoningText$inboundSchema: z.ZodType; /** @internal */ export type ReasoningText$Outbound = { type: "reasoning_text"; text: string; }; /** @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