import { Address, QuantityInterface } from '@melonproject/token-math';
import { Environment } from '../environment/Environment';
interface SendEthArgs {
    to: Address;
    howMuch: QuantityInterface;
}
declare const sendEth: (environment: Environment, { to, howMuch }: SendEthArgs) => Promise<void>;
export { sendEth };
