import React from 'react'; import { IComponentBaseProps } from '../types'; export type MenuItemProps = React.LiHTMLAttributes & IComponentBaseProps & { disabled?: boolean; }; declare const MenuItem: React.ForwardRefExoticComponent & IComponentBaseProps & { disabled?: boolean | undefined; } & React.RefAttributes>; export default MenuItem;