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