import { Select as _Select, SelectProps } from "./Select"; import { Multiselect as _Multiselect, MultiselectProps } from "./Multiselect"; type SelectFamily = typeof _Select & { Multi: typeof _Multiselect; }; declare const Select: SelectFamily; export { Select }; export type { SelectProps as SelectProps, MultiselectProps as MultiselectProps }; export type { SelectItem } from "./types";