import { Select as InnerSelect, SelectOption } from './select'; declare type _Select = typeof InnerSelect; interface Select extends _Select { Option: typeof SelectOption; } declare const Select: Select; export default Select;