import * as React from 'react'; export interface IColorPicker { disabled?: boolean; value: string; onChange: (change: { value: string }) => void; defaultEmptyValue?: string; } export class ColorPickerInput extends React.Component {}