import type { Log, AbiCoder, Result } from 'ethers'; import type { TransactionData } from '../types/models/transaction.model.js'; /** * * Parses NFT trader transaction data to extract swap details * and populate the transaction object. * * @function * @param {TransactionData} tx - The transaction data object. * @param {Log} log - The log object containing the event data. * @param {Result} decodedLogData - The decoded log data of the event. * @param {AbiCoder} abiCoder - The AbiCoder object to decode contract data. **/ declare const parseNftTrader: (tx: TransactionData, log: Log, decodedLogData: Result, abiCoder: AbiCoder) => void; export { parseNftTrader }; //# sourceMappingURL=parseNftTrader.d.ts.map