import type Web3 from "web3"; import type { SignedTransaction, TransactionReceipt } from "web3-core"; /** * Send a signed transaction (tx) to the network using web3 * * @async * @function sendSignedTransaction * @param {SignedTransaction} signedTx Web3 signed transaction object * @param {Web3} web3 web3js instance * @returns {Promise} */ export declare function sendSignedTransaction(signedTx: SignedTransaction, web3: Web3): Promise;