/// declare type ColorId = string; export interface Color { id: ColorId; color: string; name: string; href?: string; } export interface ColorPickerProps { selected?: Color; showSelected?: boolean; colors: Color[]; size?: 's' | 'm' | 'l'; onSelect?: (id: ColorId) => void; component?: 'button' | 'link'; } declare const ColorPicker: ({ selected, showSelected, colors, size, onSelect, component, }: ColorPickerProps) => JSX.Element; export default ColorPicker;