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