import type { Chain } from '@web3-onboard/common'; import type { Account, WalletState } from '../types'; export declare function addChains(chains: Chain[]): void; export declare function addWallet(wallet: WalletState): void; export declare function updateWallet(id: string, update: Partial): void; export declare function removeWallet(id: string): void; export declare function updateAccount(id: string, address: string, update: Partial): void; export declare function resetStore(): void;