import React from 'react';

type ScrollDirection = "up" | "down" | "static";
interface UseScrollDirectionOptions {
    threshold?: number;
    throttleDelay?: number;
}
declare function useScrollDirection(ref?: React.RefObject<HTMLElement | null>, options?: UseScrollDirectionOptions): ScrollDirection;

export { ScrollDirection, UseScrollDirectionOptions, useScrollDirection };
