import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ReasoningSummary, ReasoningSummary$Outbound } from "./reasoningsummary.js"; import { ReasoningText, ReasoningText$Outbound } from "./reasoningtext.js"; export declare const ReasoningOutputStatus: { readonly InProgress: "in_progress"; readonly Completed: "completed"; readonly Incomplete: "incomplete"; }; export type ReasoningOutputStatus = ClosedEnum; export type ReasoningOutput = { /** * The unique ID of the reasoning output. */ id: string; /** * The summary of the reasoning. */ summary: Array; type?: "reasoning" | undefined; /** * The content of the reasoning. */ content: Array; /** * The encrypted content of the reasoning output. */ encryptedContent: string; status?: ReasoningOutputStatus | undefined; }; /** @internal */ export declare const ReasoningOutputStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ReasoningOutputStatus$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ReasoningOutput$inboundSchema: z.ZodType; /** @internal */ export type ReasoningOutput$Outbound = { id: string; summary: Array; type: "reasoning"; content: Array; encrypted_content: string; status: string; }; /** @internal */ export declare const ReasoningOutput$outboundSchema: z.ZodType; export declare function reasoningOutputToJSON(reasoningOutput: ReasoningOutput): string; export declare function reasoningOutputFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=reasoningoutput.d.ts.map