type HueSliderProps = { className?: string; pickerClassName?: string; hue: number; layout?: 'HORIZONTAL' | 'HORIZONTAL'; onChange: (hue: number) => void; onInteractionStart: () => void; onInteractionEnd: () => void; }; declare const HueSlider: { ({ className, pickerClassName, hue, layout, onChange, onInteractionStart, onInteractionEnd, }: HueSliderProps): import("react/jsx-runtime").JSX.Element; LAYOUTS: { HORIZONTAL: string; VERTICAL: string; }; }; export default HueSlider;