import type { Result } from "@keplr-ewallet/stdlib-js";
import type { EthEWalletInterface, EthEWalletState } from "../types";
import type { LazyInitError } from "../errors";
export declare function lazyInit(ethEwallet: EthEWalletInterface): Promise<Result<EthEWalletState, LazyInitError>>;