import { default as React } from 'react';
export interface ColorPickerProps {
/** Selected color (hex format) */
value: string;
/** Change handler */
onChange: (color: string) => void;
/** Preset colors */
presets?: string[];
/** Show input field */
showInput?: boolean;
/** Show opacity slider */
showOpacity?: boolean;
/** Additional className */
className?: string;
}
/**
* ColorPicker Component
*
* Color picker with preset colors and custom input.
* Supports hex colors and opacity.
*
* @example
* ```tsx
*
* ```
*
* @example
* ```tsx
*
* ```
*/
export declare const ColorPicker: React.FC;
//# sourceMappingURL=color-picker.d.ts.map