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