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"; import { ImageGenerationStatus } from "./imagegenerationstatus.js"; export declare const OutputItemImageGenerationCallType: { readonly ImageGenerationCall: "image_generation_call"; }; export type OutputItemImageGenerationCallType = ClosedEnum; export type OutputItemImageGenerationCall = { id: string; result: string | null; status: ImageGenerationStatus; type: OutputItemImageGenerationCallType; }; /** @internal */ export declare const OutputItemImageGenerationCallType$inboundSchema: z.ZodEnum; /** @internal */ export declare const OutputItemImageGenerationCall$inboundSchema: z.ZodType; export declare function outputItemImageGenerationCallFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=outputitemimagegenerationcall.d.ts.map