import { ReactElement } from 'react';
import { Props } from './ListBoxItem.types';
/**
 * @deprecated Use the equivalent from momentum.design (NPM: `@momentum-design/components/dist/react`)
 */
declare function ListBoxItem<T>(props: Props<T>): ReactElement;
/**
 * ListBoxItem component used internally as a wrapper for items inside a listbox.
 * It's using the ListItem component internally.
 * @internal
 */
export default ListBoxItem;
