import { ObjectDirective } from 'vue';
export declare function useIntersectionObserverDirective({ listener, removeOnUnmounted, }: {
listener: (entry: IntersectionObserverEntry) => void;
removeOnUnmounted?: boolean;
}): {
vIntersectionObserver: ObjectDirective;
};