/** * Observe intersection for the given elements * Return the list of elements intersected at least once */ export declare const useIntersectionObserver: (elementRefs: (El | null)[], { threshold, root, rootMargin, }: IntersectionObserverInit) => Set;