import { ListboxProps } from './listbox.types';
/**
* @internal
* The `Listbox` component is used to display a list of items aligned with design system styles.
* Use the `ListboxItem` component to define the items of the list.
*
* ### Usage
*
* ```tsx
* import { Listbox, ListboxItem } from '@bloomreach/react-banana-ui';
*
* export default function MyMenu() {
* return (
*
* Item 1
* Item 2
* Item 3
*
* );
* }
* ```
*/
declare const Listbox: import('react').ForwardRefExoticComponent>;
export default Listbox;