import { RefObject } from 'react'; import { MenuItemProps } from '../MenuTypes'; /** * The MenuItem is meant to be used as a child of the Menu component. It can take any valid React element as a child. * * @example * console.log("Functional Menu opened")}> Functional Menu } > console.log("first menu item was clicked")}> Console log click Menu Item 2 Go to Portal */ export declare const MenuItem: import('react').ForwardRefExoticComponent>; export declare const focus: (hasFocus: boolean, ref: RefObject) => void;