import { Component, CSSProperties } from "react"; import { ColorPickerProps } from "../../.."; import { Classes } from "reactcss"; export interface HuePickerStylesProps { picker: CSSProperties; hue: CSSProperties; } export interface HuePickerProps extends ColorPickerProps { height?: string | undefined; width?: string | undefined; styles?: Partial> | undefined; } export default class HuePicker extends Component { }