/// declare type Props = { color: string; onColorChange: (color: string) => void; }; /** * * @param props * @constructor */ declare const ColorIconButton: (props: Props) => JSX.Element; export default ColorIconButton;