import { RefObject } from "react"; //#region src/hooks/scroll-direction/index.d.ts type ScrollDirection = { x: 'left' | 'right'; y: 'up' | 'down'; }; type UseScrollDirectionOptions = { threshold?: number; target?: RefObject; }; declare const useScrollDirection: (options?: UseScrollDirectionOptions) => ScrollDirection; //#endregion export { useScrollDirection };