import React from 'react'; import { SelectColor } from '../../base/theme/color'; import type { IChipPlainProps } from '../plain'; export interface IChipRemoveProps { /** Mandatory theme for ChipRemove */ color: SelectColor; /** Select ID sent back when remove button is clicked */ id: string; /** onClick handler */ onClick: (id: string, e?: React.MouseEvent) => void; /** Optional passed classname. */ className?: string; /** Size default to small */ itemSize?: IChipPlainProps['itemSize']; } export declare const ChipRemove: React.FC;