/** @packageDocumentation * @module Color */ import * as React from "react"; import { ColorDef } from "@itwin/core-common"; /** Properties for the [[ColorPickerDialog]] React component * @beta * @deprecated in 4.11.0. Props of deprecated component {@link ColorPickerDialog}. */ export interface ColorPickerDialogProps { dialogTitle: string; color: ColorDef; onOkResult: (selectedColor: ColorDef) => void; onCancelResult: () => void; /** displayed in rows of 9 items */ colorPresets?: ColorDef[]; /** If set show either HSL, RGB, or HEX input values. If undefined no input value is shown */ colorInputType?: "hsl" | "rgb" | "hex"; } /** * Color Picker Dialog to use as modal dialog. * @beta * @deprecated in 4.11.0. Use {@link https://itwinui.bentley.com/docs/colorpicker iTwinUI color picker} instead. */ export declare function ColorPickerDialog({ dialogTitle, color, onOkResult, onCancelResult, colorPresets, colorInputType, }: ColorPickerDialogProps): React.JSX.Element; //# sourceMappingURL=ColorPickerDialog.d.ts.map