import { OptGroup, Option, BaseSelectRef } from 'rc-select'; import * as React from 'react'; import { SelectProps, SelectValue } from './iSelect'; declare const Select: React.ForwardRefExoticComponent & React.RefAttributes>; type SelectType = typeof Select; interface SelectInterface extends SelectType { Option: typeof Option; OptGroup: typeof OptGroup; } declare const SelectWrapper: SelectInterface; export { Select }; export default SelectWrapper;