import { default as React } from 'react'; interface ColorPanelProps { value: string; alpha: number; showAlpha?: boolean; showInputs?: boolean; showSwatches?: boolean; swatches?: string[]; onChange: (hex: string, alpha: number) => void; } declare const ColorPanel: React.FC; export default ColorPanel;