import React from 'react'; import type { PolymorphicProps, PolymorphicComponent } from '../../utils/polymorphicComponent'; export type ListboxValue = Readonly; interface ListboxOptionProps extends PolymorphicProps> { value?: ListboxValue; disabled?: boolean; selected?: boolean; activeClass?: string; } declare const ListboxOption: PolymorphicComponent; export default ListboxOption;