import { RefObject } from "react"; //#region src/hooks/intersection-observer/use-intersection-observer.d.ts type UseIntersectionObserverOptions = { threshold?: number | number[]; root?: Element | null; rootMargin?: string; once?: boolean; }; declare const useIntersectionObserver: (ref: RefObject, callback: (entry: IntersectionObserverEntry) => void, options?: UseIntersectionObserverOptions) => void; //#endregion export { useIntersectionObserver };