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