import * as z from "zod/v3"; import { MoovError } from "./mooverror.js"; export type ListTransfersValidationErrorData = { accountIDs?: string | undefined; status?: string | undefined; startDateTime?: string | undefined; endDateTime?: string | undefined; skip?: string | undefined; count?: string | undefined; groupID?: string | undefined; foreignID?: string | undefined; scheduleID?: string | undefined; paymentLinkCode?: string | undefined; refunded?: string | undefined; disputed?: string | undefined; }; export declare class ListTransfersValidationError extends MoovError { accountIDs?: string | undefined; status?: string | undefined; startDateTime?: string | undefined; endDateTime?: string | undefined; skip?: string | undefined; count?: string | undefined; groupID?: string | undefined; foreignID?: string | undefined; scheduleID?: string | undefined; paymentLinkCode?: string | undefined; refunded?: string | undefined; disputed?: string | undefined; /** The original data that was passed to this error instance. */ data$: ListTransfersValidationErrorData; constructor(err: ListTransfersValidationErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const ListTransfersValidationError$inboundSchema: z.ZodType; /** @internal */ export type ListTransfersValidationError$Outbound = { accountIDs?: string | undefined; status?: string | undefined; startDateTime?: string | undefined; endDateTime?: string | undefined; skip?: string | undefined; count?: string | undefined; groupID?: string | undefined; foreignID?: string | undefined; scheduleID?: string | undefined; paymentLinkCode?: string | undefined; refunded?: string | undefined; disputed?: string | undefined; }; /** @internal */ export declare const ListTransfersValidationError$outboundSchema: z.ZodType; //# sourceMappingURL=listtransfersvalidationerror.d.ts.map