import RefundDestinationType from '../../model/RefundDestinationType'; import RefundStatus from '../../model/RefundStatus'; declare type BasePaymentRefundResponse = { id: number; createdDate: Date; status: RefundStatus; refundDestinationType: RefundDestinationType; refundPrice: number; refundBankPrice: number; refundWalletPrice: number; conversationId: string; authCode: string; hostReference: string; transId: string; paymentId: number; }; export default BasePaymentRefundResponse;