import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Media, Media$Outbound } from "./media.js"; /** * Response model for image generation. */ export type ImageResponse = { /** * The generated images. */ images: Array; }; /** @internal */ export declare const ImageResponse$inboundSchema: z.ZodType; /** @internal */ export type ImageResponse$Outbound = { images: Array; }; /** @internal */ export declare const ImageResponse$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace ImageResponse$ { /** @deprecated use `ImageResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ImageResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ImageResponse$Outbound` instead. */ type Outbound = ImageResponse$Outbound; } export declare function imageResponseToJSON(imageResponse: ImageResponse): string; export declare function imageResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=imageresponse.d.ts.map