import { ReactElement } from 'react';
import { Props } from './MenuItem.types';
import './MenuItem.style.scss';
/**
 * @deprecated Use the equivalent from momentum.design (NPM: `@momentum-design/components/dist/react`)
 */
declare const MenuItem: <T extends object>(props: Props<T>) => ReactElement;
/**
 * Should not be exported as part of the library. Used in implementation of Menu component.
 * @internal
 */
export default MenuItem;
