/// interface ColorInputProps { id?: string; color: string; onColorChange: (color: string) => void; } export declare const ColorInput: ({ id, color, onColorChange }: ColorInputProps) => JSX.Element; export {};