import type { UseIntersectionObserverElement, UseIntersectionObserverOptions, UseIntersectionObserverReturn } from './types';
export declare function useIntersectionObserver(
/** Отслеживаемый компонент */
target: UseIntersectionObserverElement, 
/** Параметры отслеживания */
options?: UseIntersectionObserverOptions): UseIntersectionObserverReturn;
