import React from 'react'; declare const useScrollable: (ref: React.RefObject) => { isScrollable: boolean; onRightScroll: () => void; onLeftScroll: () => void; onScroll: (() => void) & import("@hitagi/utils/debounce").Cancelable; buttonsVisibility: { left: boolean; right: boolean; }; scrollIntoView: (event: React.UIEvent) => void; }; export default useScrollable;