import React from 'react'; declare global { namespace JSX { interface IntrinsicElements { conicGradient: React.SVGProps & { from?: string; at?: string; }; } } } interface ColorPickerProps { value: string; onChange: (color: string) => void; isOpen: boolean; onClose: () => void; className?: string; } export declare const ColorPicker: React.FC; export default ColorPicker;