import Select from "./select"; import SelectOption from "./select-option"; export type SelectComponentType = typeof Select & { Option: typeof SelectOption; }; declare const SelectComponent: SelectComponentType; declare const _default: SelectComponentType; export default _default; export type { SelectProps, SelectRef } from "./select"; export { StyledSelect, type StyledSelectVariants } from "./style"; export { SelectComponent as Select };