import { ReactElement } from 'react';
import { Props } from './ListBoxItem.types';
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;
