import { Wallet } from './Wallet'; export declare class WalletUtils { static handledWalletsIDs: { [id: string]: string; }; static installedWallets: { [id: string]: any; }; static connectedWallets: { [id: string]: boolean; }; static getWallet(id: string, obj?: any, chainId?: string): Wallet; static isWalletStarknet(key: string, wallet: any): boolean; static isWalletMetamask(key: string, wallet: any): boolean; static isWalletPhantom(key: string, wallet: any): boolean; static getWalletsInstalled(): { [id: string]: any; }; }