/// export type ColorPickerPanelProps = { initialValue?: string; onCancel: () => void; onConfirm: (newValue: string) => void; disableAlpha?: boolean; }; declare const ColorPickerPanel: ({ initialValue, onCancel, onConfirm, disableAlpha }: ColorPickerPanelProps) => import("react").JSX.Element; export default ColorPickerPanel;