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