import * as z from "zod/v3"; import * as components from "../components/index.js"; import { MoovError } from "./mooverror.js"; export type UpdateCardErrorData = { e2ee?: components.End2EndEncryptionError | undefined; billingAddress?: string | undefined; expiration?: string | undefined; cardCvv?: string | undefined; cardOnFile?: string | undefined; merchantAccountID?: string | undefined; verifyName?: string | undefined; holderName?: string | undefined; }; export declare class UpdateCardError extends MoovError { e2ee?: components.End2EndEncryptionError | undefined; billingAddress?: string | undefined; expiration?: string | undefined; cardCvv?: string | undefined; cardOnFile?: string | undefined; merchantAccountID?: string | undefined; verifyName?: string | undefined; holderName?: string | undefined; /** The original data that was passed to this error instance. */ data$: UpdateCardErrorData; constructor(err: UpdateCardErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const UpdateCardError$inboundSchema: z.ZodType; /** @internal */ export type UpdateCardError$Outbound = { e2ee?: components.End2EndEncryptionError$Outbound | undefined; billingAddress?: string | undefined; expiration?: string | undefined; cardCvv?: string | undefined; cardOnFile?: string | undefined; merchantAccountID?: string | undefined; verifyName?: string | undefined; holderName?: string | undefined; }; /** @internal */ export declare const UpdateCardError$outboundSchema: z.ZodType; //# sourceMappingURL=updatecarderror.d.ts.map