/** @packageDocumentation * @module Color */ import { ColorDef } from "@bentley/imodeljs-common"; import "./ColorPickerPanel.scss"; /** Properties for the [[ColorPickerPanel]] React component * @beta */ export interface ColorPickerPanelProps { activeColor: ColorDef; onColorChange: (selectedColor: ColorDef) => void; colorPresets?: ColorDef[]; } /** * Color Picker Dialog to use as modal dialog. * @beta */ export declare function ColorPickerPanel({ activeColor, onColorChange, colorPresets }: ColorPickerPanelProps): JSX.Element; //# sourceMappingURL=ColorPickerPanel.d.ts.map