/// declare type MenuContextValue = { highlightedItem: HTMLElement | null; setHighlightedItem: (item: HTMLElement | null, showFocusVisibleStyles?: boolean) => void; setMenuContainerRef: (ref: HTMLElement | null) => void; nestedMenuOpen: boolean; listItemFocusVisible: boolean; setNestedMenuOpen: (open: boolean) => void; }; export declare const MenuProvider: import("react").Provider; export declare const useMenuContext: () => MenuContextValue; export {};