/**
 * 判断是否是微信浏览器
 */
declare function isWeChat(): boolean;
/**
 * 判断是否是微信浏览器
 * @deprecated 请使用 @see {@link isWeChat}.
 */
declare function isWeixin(): boolean;

export { isWeChat, isWeixin };
