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