import { default as React } from 'react'; export interface ColorPickerProps { /** Selected color (HEX) */ value?: string; /** Default color (uncontrolled) */ defaultValue?: string; /** Change handler */ onChange?: (color: string) => void; /** Whether to show preset swatches */ showPresets?: boolean; /** Custom preset colors */ presetColors?: string[]; /** Whether to show HEX input */ showInput?: boolean; /** Whether to show RGB inputs */ showRgbInputs?: boolean; /** Whether the colorpicker is disabled */ disabled?: boolean; /** Additional CSS classes */ className?: string; } export declare const ColorPicker: React.FC; //# sourceMappingURL=ColorPicker.d.ts.map