import { CSSProperties } from 'react'; import type { RGB } from './utils.js'; export declare const HueSlider: ({ hue, onChange, style, }: { hue: RGB; onChange: (hue: RGB) => void; style?: CSSProperties; }) => import("react/jsx-runtime").JSX.Element;