import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { MoovError } from "./mooverror.js"; import { SDKValidationError } from "./sdkvalidationerror.js"; export type FileT = { filename?: string | undefined; mimeType?: string | undefined; }; export type FileUploadValidationErrorData = { evidenceType?: string | undefined; file?: FileT | undefined; }; export declare class FileUploadValidationError extends MoovError { evidenceType?: string | undefined; file?: FileT | undefined; /** The original data that was passed to this error instance. */ data$: FileUploadValidationErrorData; constructor(err: FileUploadValidationErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const FileT$inboundSchema: z.ZodType; /** @internal */ export type FileT$Outbound = { filename?: string | undefined; mimeType?: string | undefined; }; /** @internal */ export declare const FileT$outboundSchema: z.ZodType; export declare function fileToJSON(fileT: FileT): string; export declare function fileFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const FileUploadValidationError$inboundSchema: z.ZodType; /** @internal */ export type FileUploadValidationError$Outbound = { evidenceType?: string | undefined; file?: FileT$Outbound | undefined; }; /** @internal */ export declare const FileUploadValidationError$outboundSchema: z.ZodType; //# sourceMappingURL=fileuploadvalidationerror.d.ts.map