import { type RefObject } from 'react'; /** * Hook that checks if the tab items are overflowed and updates the context. * * @param tabListRef - The ref of the tab list * * @param containerRef - The ref of the container * * @returns Whether the tab items are overflowed */ export declare function useShouldShowMenuController(tabListRef: RefObject, containerRef: RefObject): boolean;