import * as React from 'react'; import { type MenuItemProps } from '@mui/material/MenuItem'; import SvgIcon from '@mui/material/SvgIcon'; export type MdMenuItemProps = { children: string[] | string; startIcon?: typeof SvgIcon; loading?: boolean; } & Omit; declare const MdMenuItem: React.FC; export default MdMenuItem;