import { HeaderItem } from '../../../domains/shared/header'; import { MenuItemSection } from '../../../props'; /** * Builds the built-in dashboard header menu item from the given menu sections. * * Always returns the item so it can anchor `before`/`after` positioning; it is marked `hidden` * (anchor-only, not rendered) when there are no menu sections. */ export declare const useDashboardHeaderMenuItem: (menuItemSections?: MenuItemSection[]) => HeaderItem;