15 lines
332 B
TypeScript
15 lines
332 B
TypeScript
|
import { SelectType } from './Select.types';
|
||
|
/**
|
||
|
* The foundation for building custom-styled select components.
|
||
|
*
|
||
|
* Demos:
|
||
|
*
|
||
|
* - [Select](https://mui.com/base-ui/react-select/)
|
||
|
*
|
||
|
* API:
|
||
|
*
|
||
|
* - [Select API](https://mui.com/base-ui/react-select/components-api/#select)
|
||
|
*/
|
||
|
declare const Select: SelectType;
|
||
|
export { Select };
|