import { Select } from 'antd'; import { SelectProps, SelectValue } from 'antd/es/select'; import { FC, IglooComponentProps } from '../types'; import './style'; type Props = SelectProps & IglooComponentProps; type OptionType = typeof Select.Option; type OptGroupType = typeof Select.OptGroup; interface IglooSelectType extends FC { Option: OptionType; OptGroup: OptGroupType; } declare const IglooSelect: IglooSelectType; export default IglooSelect;