/// /** * @see {@link https://malkiii.github.io/react-pre-hooks/docs/hooks/useScrollDirection | useScrollDirection} hook. */ export declare const useScrollDirection: (ref?: React.RefObject | null) => { isUp: boolean; isDown: boolean; isLeft: boolean; isRight: boolean; ref: import("react").RefObject; };