import Currency from '../model/Currency'; import BasePaymentTransactionRefundResponse from './common/BasePaymentTransactionRefundResponse'; declare type PaymentTransactionRefundResponse = BasePaymentTransactionRefundResponse & { currency: Currency; paymentId: number; }; export default PaymentTransactionRefundResponse;