import Select from '../select';
import type { SelectProps } from '../index';
import React from 'react';
import GhostSelect from './GhostSelect';
export interface ISelectProps extends SelectProps {
    type?: 'select' | 'checkbox' | 'cascader';
    Option?: typeof Select.Option;
    OptGroup?: typeof Select.OptGroup;
    GhostSelect?: typeof GhostSelect;
}
declare const NormalSelect: React.FC<ISelectProps>;
export default NormalSelect;
