import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CreateImageRequest = { /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; imageGenerationRequest: components.ImageGenerationRequest; }; /** @internal */ export declare const CreateImageRequest$inboundSchema: z.ZodType; /** @internal */ export type CreateImageRequest$Outbound = { "X-On-Behalf-Of"?: string | undefined; ImageGenerationRequest: components.ImageGenerationRequest$Outbound; }; /** @internal */ export declare const CreateImageRequest$outboundSchema: z.ZodType; export declare function createImageRequestToJSON(createImageRequest: CreateImageRequest): string; export declare function createImageRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createimage.d.ts.map