import { type KeplrEwalletInitArgs } from "@keplr-ewallet/ewallet-sdk-core";
import type { Result } from "@keplr-ewallet/stdlib-js";
import { CosmosEWallet } from "./cosmos_ewallet";
export type CosmosEWalletArgs = KeplrEwalletInitArgs;
export declare function initCosmosEWallet(args: CosmosEWalletArgs): Promise<Result<CosmosEWallet, string>>;
