import { ListboxItemProps } from './listbox-item.types'; /** * @internal * The `ListboxItem` component is used to define the items of the `Listbox` component. * It mostly should be used as internal component to bring defined styles to the list items in menu * or select components. * * ### Usage * * ```tsx * import { Listbox, ListboxItem } from '@bloomreach/react-banana-ui'; * * export default function MyMenu() { * return ( * * Item 1 * Item 2 * Item 3 * * ); * } * ``` */ declare const ListboxItem: import('react').ForwardRefExoticComponent>; export default ListboxItem;