import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ResponseImageGenerationCallPartialImageEvent = { type: "response.image_generation_call.partial_image"; sequenceNumber: number; itemId: string; outputIndex: number; partialImageIndex: number; partialImageB64: string; }; /** @internal */ export declare const ResponseImageGenerationCallPartialImageEvent$inboundSchema: z.ZodType; /** @internal */ export type ResponseImageGenerationCallPartialImageEvent$Outbound = { type: "response.image_generation_call.partial_image"; sequence_number: number; item_id: string; output_index: number; partial_image_index: number; partial_image_b64: string; }; /** @internal */ export declare const ResponseImageGenerationCallPartialImageEvent$outboundSchema: z.ZodType; export declare function responseImageGenerationCallPartialImageEventToJSON(responseImageGenerationCallPartialImageEvent: ResponseImageGenerationCallPartialImageEvent): string; export declare function responseImageGenerationCallPartialImageEventFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=responseimagegenerationcallpartialimageevent.d.ts.map