import { MutableRefObject } from 'react'; interface IntersectionObserverProps { target: MutableRefObject; root?: Element | null; rootMargin?: string; threshold?: number | number[]; } export declare const useIntersectionObserver: ({ target, root, rootMargin, threshold, }: IntersectionObserverProps) => IntersectionObserverEntry | null; export {}; //# sourceMappingURL=useIntersectionObserver.d.ts.map