type UseIntersect = (intersect?: IntersectionObserverInit) => {
    ref: (el: Element | null) => void;
    entry: IntersectionObserverEntry | null;
    observer: IntersectionObserver | null;
};
declare const useIntersect: UseIntersect;
export default useIntersect;
