import { type PaymentCardType } from '../../enums/index.js'; import { type IPaymentCardResponse } from '../../types/index.js'; export declare class PaymentCard { readonly type: PaymentCardType; readonly last4: string; readonly expiryMonth: number; readonly expiryYear: number; readonly cardholderName: string; constructor(paymentCard: IPaymentCardResponse); }