import type { Connector } from '@particle-network/connector-core'; import { type WalletConfigProps } from '../config/wallet'; type GetConnectorType = { getConnector: = Record>() => Connector & properties; }; export type WalletProps = { id: string; groupId?: string; connector: Connector; isInstalled?: boolean; } & WalletConfigProps & GetConnectorType; declare const useWalletsProps: () => WalletProps[]; export default useWalletsProps; export declare const useWalletProps: (id: string) => WalletProps | null;