import React from 'react'; import '../g.scss'; declare function SelectIcon(props: ISelectIcon): React.JSX.Element; export default SelectIcon; export interface ISelectIcon { value: string; title: string; selectList?: ISelect[]; change: Function; } export interface ISelect { key: string; value?: string; }