import { Select } from 'antd'; import { SelectProps, SelectValue } from 'antd/es/select'; import { FC, IglooComponentProps } from '../types'; import './style'; import { ComponentProps } from '../utils/option-utils'; type Props = SelectProps & IglooComponentProps & { multiple?: boolean; preview?: boolean; } & ComponentProps; type OptionType = typeof Select.Option; type OptGroupType = typeof Select.OptGroup; interface IglooSelectType extends FC { Option: OptionType; OptGroup: OptGroupType; } declare const AttachedSelect: IglooSelectType; export default AttachedSelect;