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