import { ChainTypes } from '../constants'; import { WalletConfig } from '../service/types'; export declare function isMetamaskWallet(walletConfig: WalletConfig): boolean; export declare function isCardanoChainType(walletConfig: WalletConfig): boolean; export declare function convertChainCodeToChainType(code: string): ChainTypes; export declare function isCardano(chainType?: ChainTypes): boolean; export declare function getWalletIcon(walletConfig: WalletConfig): string | undefined; export declare function getCurrentWalletCode(): string;