import React, { FC } from 'react'; import { MenuItemProps as MuiMenuItemProps, SxProps } from '@mui/material'; interface MenuItemProps extends MuiMenuItemProps { sx?: SxProps; className?: string; children: React.ReactNode; } export declare const MenuItem: FC; export {};