import { ChainType, WalletType } from '../../wallets/client/IWallet'; export declare function useChains(): { chains: { id: ChainType; canAdd: boolean; wallets: { id: WalletType; bg: string; lightBg: string; }[]; }[]; };