import type { TransactionData } from '../types/models/transaction.model.js'; import type { Config, Options } from '../types/interfaces/enft.interface.js'; /** * * Parses a transaction and handles the corresponding webhook notifications if enabled. * * @async * @function * @param {Config} config - The configuration for the client. * @param {string} transactionHash - The hash of the transaction to parse. * @param {Options} options - The options for the client. * @returns {Promise} A promise that resolves with the transaction data if available, otherwise null. */ declare const execute: (config: Config, transactionHash: string, options: Options) => Promise; export { execute }; //# sourceMappingURL=execute.d.ts.map