You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
468 B
TypeScript

import { PolymorphicComponent } from '../utils/PolymorphicComponent';
import { OptionGroupTypeMap } from './OptionGroup.types';
/**
* An unstyled option group to be used within a Select.
*
* Demos:
*
* - [Select](https://mui.com/base-ui/react-select/)
*
* API:
*
* - [OptionGroup API](https://mui.com/base-ui/react-select/components-api/#option-group)
*/
declare const OptionGroup: PolymorphicComponent<OptionGroupTypeMap<{}, "li">>;
export { OptionGroup };