import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Image generation call item: A tool-call record for image generation, including status and result URL. */ export type ImageGenerationCall = { type: "image_generation_call"; id: string; status: string; result: string; background?: string | undefined; outputFormat?: string | undefined; quality?: string | undefined; size?: string | undefined; revisedPrompt?: string | undefined; }; /** @internal */ export declare const ImageGenerationCall$inboundSchema: z.ZodType; /** @internal */ export type ImageGenerationCall$Outbound = { type: "image_generation_call"; id: string; status: string; result: string; background?: string | undefined; output_format?: string | undefined; quality?: string | undefined; size?: string | undefined; revised_prompt?: string | undefined; }; /** @internal */ export declare const ImageGenerationCall$outboundSchema: z.ZodType; export declare function imageGenerationCallToJSON(imageGenerationCall: ImageGenerationCall): string; export declare function imageGenerationCallFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=imagegenerationcall.d.ts.map