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