import * as z from "zod/v3"; import { MoovError } from "./mooverror.js"; export type RefundValidationErrorData = { amount?: string | undefined; /** * Used for generic errors when invalid request data isn't attributed to a single request field. */ error?: string | undefined; }; export declare class RefundValidationError extends MoovError { amount?: string | undefined; /** * Used for generic errors when invalid request data isn't attributed to a single request field. */ error?: string | undefined; /** The original data that was passed to this error instance. */ data$: RefundValidationErrorData; constructor(err: RefundValidationErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const RefundValidationError$inboundSchema: z.ZodType; /** @internal */ export type RefundValidationError$Outbound = { amount?: string | undefined; error?: string | undefined; }; /** @internal */ export declare const RefundValidationError$outboundSchema: z.ZodType; //# sourceMappingURL=refundvalidationerror.d.ts.map