import { type RefObject } from 'react'; /** * The options for the useDisabledButtons hook. */ type UseDisabledButtonsOptions = { /** * The reference to the tab list element. */ tabListRef: RefObject; }; /** * Custom hook for managing disabled state of tab menu buttons. * * @param tabListRef - The reference to the tab list element. * * @returns The disabled state of the tab menu buttons. */ export declare function useDisabledButtons({ tabListRef }: UseDisabledButtonsOptions): { prev: boolean; next: boolean; }; export {};