ohctechv3/.svn/pristine/76/76accd72ea9f0aa07c92cab85f6103dd043f8215.svn-base
2024-10-28 15:03:36 +05:30

16 lines
468 B
Plaintext

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 };