/// declare type Props = { anchorEl: null | HTMLElement | ((element: HTMLElement) => HTMLElement); closeMenu: any; color: string; onColorChange: (color: string) => void; openedMenu: boolean; openMenu: any; }; /** * * @param props * @constructor */ declare const ColorIconMenu: (props: Props) => JSX.Element; export default ColorIconMenu;