import * as z from "zod/v4"; import { ClosedEnum } from "../types/enums.js"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export declare const ReasoningSummaryTextType: { readonly SummaryText: "summary_text"; }; export type ReasoningSummaryTextType = ClosedEnum; export type ReasoningSummaryText = { text: string; type: ReasoningSummaryTextType; }; /** @internal */ export declare const ReasoningSummaryTextType$inboundSchema: z.ZodEnum; /** @internal */ export declare const ReasoningSummaryTextType$outboundSchema: z.ZodEnum; /** @internal */ export declare const ReasoningSummaryText$inboundSchema: z.ZodType; /** @internal */ export type ReasoningSummaryText$Outbound = { text: string; type: string; }; /** @internal */ export declare const ReasoningSummaryText$outboundSchema: z.ZodType; export declare function reasoningSummaryTextToJSON(reasoningSummaryText: ReasoningSummaryText): string; export declare function reasoningSummaryTextFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=reasoningsummarytext.d.ts.map