/// <reference types="react" />
export declare const useIntersection: ({ root, rootMargin, threshold, once, }?: IUseIntersection) => {
    isIntersecting: boolean;
    ref: import("react").MutableRefObject<HTMLDivElement | null>;
};
interface IUseIntersection {
    root?: HTMLElement | null;
    rootMargin?: string;
    threshold?: number;
    once?: boolean;
}
export {};
