import { SupportChain } from '../feature/index.js';
import { Wallet, UniSatWallet, OkxWallet, OnekeyWallet } from '../wallet/index.js';
import { LocalWallet } from '../wallet/local.js';
export declare const supportedWallets: (UniSatWallet | OkxWallet | OnekeyWallet | LocalWallet)[];
export declare function checkWallets(filter?: SupportChain): Promise<Wallet[]>;
