export default class EthereumTransactionData { /** * @param {Uint8Array} bytes * @returns {EthereumTransactionData} */ static fromBytes(bytes: Uint8Array): EthereumTransactionData; /** * @protected * @param {object} props * @param {Uint8Array} props.callData */ protected constructor(); callData: Uint8Array; /** * @returns {Uint8Array} */ toBytes(): Uint8Array; /** * @returns {string} */ toString(): string; /** * @returns {{[key: string]: any}} */ toJSON(): { [key: string]: any; }; }