import React from 'react'; export interface ColorChipProps { color?: string; displayedColor?: string; label?: string; selected?: boolean; disabled?: boolean; onClick: (color: string) => void; } interface ColorChipInstance { focus: () => void; } export declare const ColorChip: React.ForwardRefExoticComponent>; export {};