import { default as React } from 'react'; interface CustomColorPickerProps { color: string; onChange: (color: string) => void; iconMenu?: boolean; disableColorPicker?: boolean; } declare const CustomColorPicker: React.FC; export default CustomColorPicker; //# sourceMappingURL=CustomColorPicker.d.ts.map