import { default as React } from 'react'; type ColorPickerSize = 'sm' | 'md' | 'lg'; type ColorPickerVariant = 'button' | 'swatch' | 'input'; type ColorFormat = 'hex' | 'rgb' | 'rgba' | 'hsl'; interface ColorPickerProps { value?: string; defaultValue?: string; alpha?: number; defaultAlpha?: number; format?: ColorFormat; size?: ColorPickerSize; variant?: ColorPickerVariant; disabled?: boolean; readOnly?: boolean; editable?: boolean; showAlpha?: boolean; showInputs?: boolean; showSwatches?: boolean; swatches?: string[]; placeholder?: string; className?: string; ariaLabel?: string; onChange?: (value: string, alpha: number) => void; onOpenChange?: (open: boolean) => void; } declare const ColorPicker: React.FC; export { ColorPicker }; export type { ColorPickerProps, ColorPickerSize, ColorPickerVariant, ColorFormat };