import { type WalletProps } from './useWalletsProps'; export type WalletConnection = { accounts: readonly [string, ...string[]]; chainId: number; walletProps: WalletProps; }; export declare const useWalletConnections: () => WalletConnection[];