import React from 'react'; export declare type ColorPickerProps = { color: string; onChange: (color: string) => void; }; declare const ColorPicker: React.FC; export { ColorPicker };