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