import * as z from "zod/v3"; import * as components from "../components/index.js"; import { MoovError } from "./mooverror.js"; export type ImageRequestValidationErrorData = { image?: string | undefined; metadata?: components.ImageMetadataValidationError | undefined; }; export declare class ImageRequestValidationError extends MoovError { image?: string | undefined; metadata?: components.ImageMetadataValidationError | undefined; /** The original data that was passed to this error instance. */ data$: ImageRequestValidationErrorData; constructor(err: ImageRequestValidationErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const ImageRequestValidationError$inboundSchema: z.ZodType; /** @internal */ export type ImageRequestValidationError$Outbound = { image?: string | undefined; metadata?: components.ImageMetadataValidationError$Outbound | undefined; }; /** @internal */ export declare const ImageRequestValidationError$outboundSchema: z.ZodType; //# sourceMappingURL=imagerequestvalidationerror.d.ts.map