import { ScrollSensorEvent } from '../types';
declare function useScrollSense(useMultipleIOs?: boolean): {
    onIntersection: (el: HTMLElement, fn: (evt: ScrollSensorEvent) => any, options?: any) => any;
    detach: (el: any) => void;
};
export default useScrollSense;
