/** * 移动设备检测工具 */ /** * 检测是否为移动设备 */ export declare function isMobile(): boolean; /** * 检测是否为 iOS 设备 */ export declare function isIOS(): boolean; /** * 检测是否为 Android 设备 */ export declare function isAndroid(): boolean; /** * 获取移动操作系统 */ export declare function getMobileOS(): 'ios' | 'android' | 'unknown'; /** * 钱包深度链接配置 */ export interface WalletDeepLink { name: string; ios: string; android: string; universal?: string; icon?: string; } /** * 支持的钱包深度链接 */ export declare const WALLET_DEEP_LINKS: Record; /** * 生成钱包深度链接 */ export declare function generateDeepLink(uri: string, walletId?: string): string; /** * 打开钱包深度链接 */ export declare function openWalletDeepLink(uri: string, walletId?: string): void; /** * 带 ID 的钱包深度链接 */ export interface WalletDeepLinkWithId extends WalletDeepLink { id: string; } /** * 获取推荐的移动钱包列表 */ export declare function getRecommendedMobileWallets(): WalletDeepLinkWithId[];