/// import { ThemeName } from '../../styled-components/Themes'; declare type Props = { id?: string; label: string; value?: ThemeName; color?: string; onClick?: (value: ThemeName) => void; }; declare const ColoredItem: ({ id, label, value, color, onClick }: Props) => JSX.Element; export default ColoredItem;