/// interface IProps { value: string; onChange: (newColor: string) => void; } declare const ColorPicker: ({ value, onChange: _onChange, ...props }: IProps) => JSX.Element; export default ColorPicker;