import Select from "./Select"; import SelectCustom from "./SelectCustom"; import SelectGroup from "./SelectGroup"; import SelectOption from "./SelectOption"; declare const SelectRoot: typeof Select & { Custom: typeof SelectCustom; Option: typeof SelectOption; Group: typeof SelectGroup; OptionGroup: typeof SelectGroup; }; export default SelectRoot; export type { Props as SelectProps } from "./Select.types";