import { HTMLAttributes, Ref, FC } from 'react';
import { IconCategory } from './Icon';
/**
*
*/
export type PillProps = {
label?: string;
title?: string;
truncate?: boolean;
disabled?: boolean;
icon?: {
category?: IconCategory;
icon?: string;
};
pillRef?: Ref;
onRemove?: () => void;
} & HTMLAttributes;
/**
*
*/
export declare const Pill: FC;