UNPKG

ultra-design

Version:
12 lines (11 loc) 376 B
import SelectComponent from './select'; import Option from './option'; export { Option }; export type { SelectProps } from './select'; export type { OptionProps } from './option'; declare type SelectType = typeof SelectComponent; interface SelectComponentType extends SelectType { Option: typeof Option; } declare const Select: SelectComponentType; export default Select;