/// <reference types="react" />
declare type ChipProps = {
    label: string;
    onDelete: () => void;
    active?: boolean;
};
export default function Chip({ label, active, onDelete, }: ChipProps): JSX.Element;
export {};
