/** @jsx jsx */ import { SVGProps } from 'react'; export interface IColoredChipProps extends SVGProps { color: string; title?: string; } export declare function ColoredChip(props: IColoredChipProps): JSX.Element;