import React from 'react';
import './Chip.scss';
interface ChipProps {
    disabled?: boolean;
    icon?: string;
    label: string;
    handleRemoveChip?: () => void;
}
export declare const Chip: React.FC<ChipProps>;
export {};
