import WalletTransactionType from '../model/WalletTransactionType'; declare type WalletTransactionResponse = { id: number; createdDate: Date; walletTransactionType: WalletTransactionType; amount: number; transactionId: number; walletId: number; }; export default WalletTransactionResponse;