import React from 'react';
import './ListItemBase.style.scss';
import { Props } from './ListItemBase.types';
/**
 * List Item Base component that can be used inside Lists/Menus
 */
/**
 * @deprecated Use the equivalent from momentum.design (NPM: `@momentum-design/components/dist/react`)
 */
declare const _ListItemBase: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLLIElement>>;
export default _ListItemBase;
