import { RefObject } from 'react'; export declare type ScrollAttributes = { scrollStart: boolean; scrollEnd: boolean; }; export declare const getScrollAttributes: (scrollLeft: number, clientWidth: number, contentScrollWidth: number) => ScrollAttributes; declare const useScrollAttributes: (ref: RefObject) => Array; export default useScrollAttributes;