import * as React from 'react'; import { ListContextValue } from '../useList/ListContext'; import { MenuItemMetadata } from '../useMenuItem'; import { CompoundComponentContextValue } from '../utils/useCompound'; export type MenuProviderValue = CompoundComponentContextValue & ListContextValue; export interface MenuProviderProps { value: MenuProviderValue; children: React.ReactNode; } /** * Sets up the contexts for the underlying MenuItem components. * * @ignore - do not document. */ export default function MenuProvider(props: MenuProviderProps): React.JSX.Element;