import React from 'react'; import { SelectColor } from '../../base/theme/color'; export interface IChipPlainProps { /** Optional passed classname. */ className?: string; /** Optional children to pass in, for example if we want text */ children: React.ReactNode; /** Mandatory theme for ChipPlain */ color: SelectColor; /** Select ID sent back when remove button is clicked */ optionId?: string; /** onRemove click handler */ onRemove?: (id: string, e?: React.MouseEvent) => void; /** Size defaults to small */ itemSize?: 'small' | 'medium'; } export declare const ChipPlain: React.FC;