import { Wallet } from '@mysten/wallet-standard'; /** * Checks if the provided wallet is compatible with a standard wallet adapter by verifying specific features. * * @param {Wallet} wallet - The wallet to be checked for compatibility. * @return {boolean} Returns true if the wallet has the required features for a standard wallet adapter, otherwise false. */ export declare function isStandardWalletAdapterCompatibleWallet(wallet: Wallet): boolean;