export declare const useIntersectionObserver: ({ root, target, onIntersect, threshold, rootMargin }: {
    root: any;
    target: any;
    onIntersect: any;
    threshold?: number;
    rootMargin?: string;
}) => void;
