export type TUseScrollDirection = 'up' | 'down';
export type IUseScroll = {
offset?: number;
direction?: TUseScrollDirection;
target?: HTMLElement | Window;
element?: any;
};
declare const useScroll: {
(props: IUseScroll): boolean;
displayName: string;
};
export default useScroll;