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