@momentum-ui/react-collaboration
Version:
Cisco Momentum UI Framework for React Collaboration Applications
13 lines (12 loc) • 438 B
TypeScript
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;