/// <reference types="react" />
interface UseIntersectionObserverOptions {
    threshold?: number;
    rootMargin?: string;
    triggerOnce?: boolean;
}
export declare const useIntersectionObserver: (options?: UseIntersectionObserverOptions) => {
    elementRef: import("react").RefObject<HTMLDivElement>;
    isIntersecting: boolean;
};
export {};
//# sourceMappingURL=useIntersectionObserver.d.ts.map