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