import React from 'react'; import '../g.scss'; declare function LabelIcontUploadSelect(props: ILabelIcontUploadSelect): React.JSX.Element; export default LabelIcontUploadSelect; export interface ILabelIcontUploadSelect { title?: any; change?: Function; size?: string; titleIcon?: string; imgUrl?: string; selectList: ISelectList[]; selectValue?: string | number; wrapStyle?: React.CSSProperties; } export interface ISelectList { key: string | number; value?: number | string; }