/** * Checks if the current browser is Internet Explorer (IE). * @returns {boolean} Returns `true` if the browser is IE; otherwise, returns `false`. * @example * isIE() // => false in modern browsers * * @since 1.0.0 */ declare const isIE: () => boolean; export default isIE;