/// interface Props { color?: string; onChange: (newColor: string) => void; } declare const ColorPickerPalette: ({ color, onChange }: Props) => JSX.Element; export default ColorPickerPalette;