import React from "react"; import { hex } from "../../Theme"; export interface IColorPicker { color: string; onPick: (color: hex) => void; } declare const Palette: React.FunctionComponent; export default Palette;