import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * The type of the card. */ export declare const CardType: { readonly Debit: "debit"; readonly Credit: "credit"; readonly Prepaid: "prepaid"; readonly Unknown: "unknown"; }; /** * The type of the card. */ export type CardType = ClosedEnum; /** @internal */ export declare const CardType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const CardType$outboundSchema: z.ZodNativeEnum; //# sourceMappingURL=cardtype.d.ts.map