import { WalletInfo } from 'src/types'; import { WalletType } from '../constants'; export type SwitchWalletType = 'elf' | 'portkey' | 'discover'; export type SwitchWalletsHook = { current: WalletType; switching: boolean; switchingWallet: WalletType; wallets: { nightElf: WalletInfo; portkey: WalletInfo; discover: WalletInfo; }; switchWallet: (walletType: SwitchWalletType) => Promise; }; export default function useMultiWallets(): SwitchWalletsHook;