import { type RefObject } from 'react'; type UseTabMenuButtonsControllerOptions = { tabListRef: RefObject; }; /** * Custom hook for managing tab menu buttons behavior. * Handles onClick events for scrolling the tab list. * * @returns The event handlers for the tab menu buttons. */ export declare function useTabMenuButtonsController({ tabListRef }: UseTabMenuButtonsControllerOptions): { onClickPrev: () => void; onClickNext: () => void; }; export {};