import React from 'react'; import './index.less'; export interface IconSelectProps { value?: string; onChange?: (value: string) => void; disabled?: boolean; defaultValue?: string; } declare const IconSelect: React.FC; export default IconSelect;