export declare type ListboxItem = { name: string; }; export declare type ListboxProps = { /** The items as { name: string } objects to populate the list box. */ items?: ListboxItem[]; /** The handled for the 'selected' event. */ onSelected?: (item: ListboxItem) => void; }; /** Listboxes are a great foundation for building custom, accessible select menus for your app, complete with robust support for keyboard navigation. */ export declare const Listbox: ({ items, onSelected, }: ListboxProps) => JSX.Element;