import React from 'react'; import '../g.scss'; declare function LabelSelect(props: ILabelSelect): React.JSX.Element; export default LabelSelect; export interface ILabelSelect { title: string | number; selectList: ISelectList[]; change: Function; size: string; value?: any; paddingSize?: string; selectLoading?: boolean; suffixIcon?: any; wrapStyle?: React.CSSProperties; padding?: number; customStyle?: React.CSSProperties; dropdownMatchSelectWidth?: boolean; placement?: string; isError?: boolean; placeholder?: string; allowClear?: boolean; clearIcon?: string; mode?: string; isRequired?: boolean; } export interface ISelectList { key: number | string; name: string | number; type: string; names?: string; img?: string; nameType?: string; nameColor?: string; }