/** * Determines if the element is within the viewport. * @param el {HTMLElement} */ declare const isElementInView: (el: HTMLElement) => boolean; export default isElementInView;