/// import { IconProp } from './icons'; declare type Color = 'gray' | 'green' | 'orange' | 'red' | 'indigo' | 'blue' | 'gray-text' | 'green-text' | 'orange-text' | 'red-text' | 'indigo-text' | 'blue-text'; declare type ColoredChipProps = { text?: string; color: Color | string | ((text: string) => string) | { [text: string]: string; }; icon?: IconProp | ((text: string) => IconProp); dense?: boolean; }; export declare function ColoredChip({ text, color, icon, dense }: ColoredChipProps): JSX.Element; export {};