import React from 'react'; import { IGlyph } from '../../icon'; export interface IChipIconProps { /** Optional passed classname. */ className?: string; /** Text to display */ text: string; /** Emoji overrides icon if present */ icon: IGlyph; /** */ theme?: 'blue' | 'grey'; /** Icon fill color */ fill?: string; /** Mandatory size */ size?: { height?: number; width?: number; }; /** Select ID sent back when remove button is clicked */ chipId?: string; /** onRemove click handler */ onRemove?: (value: string) => void; } export declare const ChipIcon: React.FC;