import * as z from "zod/v3"; import { MoovError } from "./mooverror.js"; export type ListWalletTransactionsValidationErrorData = { transactionType?: string | undefined; transactionTypes?: string | undefined; sourceType?: string | undefined; sourceID?: string | undefined; status?: string | undefined; sweepID?: string | undefined; createdStartDateTime?: string | undefined; createdEndDateTime?: string | undefined; completedStartDateTime?: string | undefined; completedEndDateTime?: string | undefined; statementDescriptor?: string | undefined; skip?: string | undefined; count?: string | undefined; }; export declare class ListWalletTransactionsValidationError extends MoovError { transactionType?: string | undefined; transactionTypes?: string | undefined; sourceType?: string | undefined; sourceID?: string | undefined; status?: string | undefined; sweepID?: string | undefined; createdStartDateTime?: string | undefined; createdEndDateTime?: string | undefined; completedStartDateTime?: string | undefined; completedEndDateTime?: string | undefined; statementDescriptor?: string | undefined; skip?: string | undefined; count?: string | undefined; /** The original data that was passed to this error instance. */ data$: ListWalletTransactionsValidationErrorData; constructor(err: ListWalletTransactionsValidationErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const ListWalletTransactionsValidationError$inboundSchema: z.ZodType; /** @internal */ export type ListWalletTransactionsValidationError$Outbound = { transactionType?: string | undefined; transactionTypes?: string | undefined; sourceType?: string | undefined; sourceID?: string | undefined; status?: string | undefined; sweepID?: string | undefined; createdStartDateTime?: string | undefined; createdEndDateTime?: string | undefined; completedStartDateTime?: string | undefined; completedEndDateTime?: string | undefined; statementDescriptor?: string | undefined; skip?: string | undefined; count?: string | undefined; }; /** @internal */ export declare const ListWalletTransactionsValidationError$outboundSchema: z.ZodType; //# sourceMappingURL=listwallettransactionsvalidationerror.d.ts.map