import * as React from 'react'; import { Props } from '@material/react-text-field/dist/index'; export interface IIconPickerProps { textfield?: Partial> & Omit & { editIcon?: string; helperTextValue?: string; }; onChange: (icon: string) => void; } declare const IconPicker: React.SFC; export default IconPicker;