/// import { IntersectionObserverOptions } from '../useIntersectionObserver'; /** * @see {@link https://malkiii.github.io/react-pre-hooks/docs/hooks/useInView | useInView} hook. */ export declare const useInView: (args: IntersectionObserverOptions & { once?: boolean; }) => { ref: import("react").RefObject; isInView: boolean; };