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<MenuItemProps, 'children'>;
declare const MdMenuItem: React.FC<MdMenuItemProps>;
export default MdMenuItem;
