import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ResponseReasoningTextDoneEvent = { type: "response.reasoning_text.done"; sequenceNumber: number; itemId: string; outputIndex: number; contentIndex: number; text: string; }; /** @internal */ export declare const ResponseReasoningTextDoneEvent$inboundSchema: z.ZodType; /** @internal */ export type ResponseReasoningTextDoneEvent$Outbound = { type: "response.reasoning_text.done"; sequence_number: number; item_id: string; output_index: number; content_index: number; text: string; }; /** @internal */ export declare const ResponseReasoningTextDoneEvent$outboundSchema: z.ZodType; export declare function responseReasoningTextDoneEventToJSON(responseReasoningTextDoneEvent: ResponseReasoningTextDoneEvent): string; export declare function responseReasoningTextDoneEventFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=responsereasoningtextdoneevent.d.ts.map