/** * Setup an [`IntersectionObserver`](https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserver) on * a DOM Element. * * @param element The DOM element to observe * @param init IntersectionObserver options */exportdefaultfunctionuseIntersectionObserver<TElementextendsElement>(element:TElement|null|undefined,{threshold,root,rootMargin}?:IntersectionObserverInit):IntersectionObserverEntry[];