import { type KeplrEwalletInitArgs } from "@keplr-ewallet/ewallet-sdk-core";
import type { Result } from "@keplr-ewallet/stdlib-js";
import { EthEWallet } from "./eth_ewallet";
export declare function initEthEWallet(args: KeplrEwalletInitArgs & {
    use_testnet?: boolean;
}): Promise<Result<EthEWallet, string>>;
