/** @packageDocumentation * @module Color */ import "./SaturationPicker.scss"; import * as React from "react"; import { HSVColor } from "@itwin/core-common"; import type { CommonProps } from "@itwin/core-react"; /** Properties for the [[SaturationPicker]] React component * @beta * @deprecated in 4.11.0. Props of deprecated component {@link SaturationPicker}. */ export interface SaturationPickerProps extends React.HTMLAttributes, CommonProps { /** function to run when user selects location in saturation region */ onSaturationChange?: ((saturation: HSVColor) => void) | undefined; /** HSV Color Value */ hsv: HSVColor; } /** SaturationPicker component used to set the saturation value. * @beta * @deprecated in 4.11.0. Use {@link https://itwinui.bentley.com/docs/colorpicker iTwinUI color picker} instead. */ export declare function SaturationPicker({ onSaturationChange, hsv, className, style, }: SaturationPickerProps): React.JSX.Element; //# sourceMappingURL=SaturationPicker.d.ts.map