export declare enum WalletType { INTEGRATOR = "integrator", METAMASK = "metamask", WALLET_CONNECT = "walletConnect" } export declare const WalletMap: { metamask: { name: string; type: WalletType; icon: import("react").FunctionComponent & { title?: string; }>; link: string; }; walletConnect: { name: string; type: WalletType; icon: import("react").FunctionComponent & { title?: string; }>; }; };