import { SaturationValue } from 'common/util'; type SaturationValueSelectorProps = { className?: string; pickerClassName?: string; hue: number; saturation: number; value: number; onChange: (saturationValue: SaturationValue) => void; onInteractionStart?: () => void; onInteractionEnd?: () => void; }; declare const SaturationValueSelector: ({ className, pickerClassName, hue, saturation, value, onChange, onInteractionStart, onInteractionEnd, }: SaturationValueSelectorProps) => import("react/jsx-runtime").JSX.Element; export default SaturationValueSelector;