import { SelectProps, SelectValue } from './select'; import React from 'react'; import { OptionProps } from 'rc-select/lib/Option'; export interface BeeSelectProps extends SelectProps { label: string; required?: boolean; } interface SelectRef { onFocus: Function; onBlur: Function; } interface CompoundedComponent extends React.ForwardRefExoticComponent> { Option: React.FC; } declare const BeeSelect: CompoundedComponent; export default BeeSelect;