import { Models } from '@open-rights-exchange/chain-js'; import { EthereumTransactionAction, EthereumAddress } from '../../../models'; export interface EthTransferParams { value: string; from?: EthereumAddress; to: EthereumAddress; gasPrice?: string; gasLimit?: string; nonce?: string; } /** Sends ETH (in units of Wei) */ export declare const composeAction: (params: EthTransferParams) => { gasPrice?: string; gasLimit?: string; nonce?: string; from: Models.ChainEntityNameBrand; to: Models.ChainEntityNameBrand; value: string; }; export declare const decomposeAction: (action: EthereumTransactionAction) => Models.ActionDecomposeReturn;