import * as React from 'react'; import type { MenuListState } from '../MenuList/MenuList.types'; /** * Context shared between Menu and its child components */ export type MenuListContextValue = Omit & { hasCheckmarks: boolean; hasIcons: boolean; hasTooltips: boolean; }; export declare const MenuListContext: React.Context; export declare const MenuListProvider: React.Provider; export declare const useMenuListContext: () => MenuListContextValue; //# sourceMappingURL=menuListContext.d.ts.map