import BasePaymentResponse from './common/BasePaymentResponse'; import PaymentTransaction from './dto/PaymentTransaction'; declare type PaymentResponse = BasePaymentResponse & { cardUserKey: string; cardToken: string; paymentTransactions: PaymentTransaction[]; additionalData?: Map; }; export default PaymentResponse;