import React from 'react';
import './style.scss';
interface ChipsProps {
    chips?: string[] | any[];
    onDelete?: (option: string) => void;
    className?: string;
    height?: number;
    visibleChipsCount?: number;
}
declare const Chips: React.FC<ChipsProps>;
export default Chips;
