import React from 'react'; import { AlphaProps } from '@uiw/react-color-alpha'; export interface HueProps extends Omit { onChange?: (newHue: { h: number; }) => void; hue?: number; } declare const Hue: React.ForwardRefExoticComponent>; export default Hue;