import { MenuProps } from '../Menu'; /** * Context props for Menu components */ export type MenuContextProps = { /** * Function to close the root menu */ closeRootMenu: () => void; /** * Whether auto height is disabled */ disableAutoHeight: MenuProps["disableAutoHeight"]; }; export declare const MenuContext: import('react').Context;