/**
 * Check if an element is in the viewport
 * @param {HTMLElement} elem
 * @returns {Boolean}
 */
declare function isInViewport(elem: HTMLElement): boolean;
export { isInViewport };
