import { Web3Context } from "web3-core"; import { EthExecutionAPI, Transaction, TransactionWithFromLocalWalletIndex, TransactionWithToLocalWalletIndex, TransactionWithFromAndToLocalWalletIndex, FormatType, ETH_DATA_FORMAT, HexString, Address } from "web3-types"; export declare const getTransactionFromOrToAttr: (attr: "from" | "to", web3Context: Web3Context, transaction?: Transaction | TransactionWithFromLocalWalletIndex | TransactionWithToLocalWalletIndex | TransactionWithFromAndToLocalWalletIndex, privateKey?: HexString | Uint8Array) => Address | undefined; export declare const getTransactionType: (transaction: FormatType, web3Context: Web3Context) => string | undefined;