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