import { Direction } from '@wix/editor-react-types'; type UseTabsScrollParams = { containerRef: React.RefObject; isScrollEnabled: boolean; direction: Direction; tabsCount: number; }; export declare const useTabsScroll: ({ containerRef, isScrollEnabled, direction, tabsCount, }: UseTabsScrollParams) => { handleOnScroll: () => void; handleScrollForward: () => void; handleScrollBackward: () => void; isScrollBackwardButtonVisible: boolean; isScrollForwardButtonVisible: boolean; isScrollControlsVisible: boolean; }; export {};