import type { HardwareWalletAccount, ModuleState, Wallet } from "@near-wallet-selector/core"; export type HardwareWalletAccountState = HardwareWalletAccount & { selected: boolean; }; export declare const resolveAccounts: (wallet: Wallet) => Promise | null>; export declare function connectToWallet(module: ModuleState, qrCodeModal?: boolean): Promise; export declare function renderModal(): void;