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