import { IViewProps } from '../View'; declare const Pill: ({ color, label, onRemoveClick, ...props }: IPillProps) => JSX.Element; interface IPillProps extends IViewProps { readonly label: string; readonly color?: string; readonly onRemoveClick?: () => void; } export default Pill;