import { EthereumClient } from "./ethereum";
import { Network } from "@dojima-wallet/types";
export default class EthereumInit {
    ethConnect: EthereumClient;
    constructor(mnemonic: string, privateKey: string, network: Network, rpcUrl: string);
}
