import type { Provider } from 'ethers'; import type { TransactionData } from '../types/models/transaction.model.js'; /** * * Parse Sudoswap transaction and update the given transaction data accordingly. * * @async * @function * @param {TransactionData} tx - Transaction data to be updated * @param {Provider} provider - Provider instance * @throws {Error} - If the transaction function is not supported **/ declare const parseSudoswap: (tx: TransactionData, provider: Provider) => Promise; export { parseSudoswap }; //# sourceMappingURL=parseSudoswap.d.ts.map