export default interface IPaymentCard { readonly card_number: string; readonly cvv: string; readonly card_expiry: string; readonly card_type: number; readonly postal_code: string; } export declare enum CardType { VISA = 0, VISA_DEBIT = 1, ELECTRON = 2, MASTERCARD = 3, MASTERCARD_DEBIT = 4, LASER = 5, AMEX = 6, DINERS = 7, JCB = 8, DISCOVER = 9, CUP_SECUREPAY = 10 } export declare const getCardType: (cartType: CardType) => "AMEX" | "VISA" | "MASTERCARD"; export declare const detectCardType: (number: string) => CardType.VISA | CardType.MASTERCARD | CardType.AMEX;