/** Indicates a card's type, such as `CREDIT` or `DEBIT`. */ export declare const CardType: { readonly UnknownCardType: "UNKNOWN_CARD_TYPE"; readonly Credit: "CREDIT"; readonly Debit: "DEBIT"; }; export type CardType = (typeof CardType)[keyof typeof CardType];