/**
 * 判断浏览器是否是 ie
 * 如果是 ie 则会返回对应 ie 版本
 * 如果不是则返回false
 */
declare function isIE(): false | number;

export { isIE };
