import React from 'react';
import { ILine } from '../Line/Line';
import { IElement, IPropsAny } from '../types';
export declare type IChips = ILine & {
    total?: number;
    showAllDefault?: boolean;
    max?: number;
    moreShowAll?: boolean;
    AdditionalChip?: IElement;
    AdditionalChipProps?: IPropsAny;
};
declare const Chips: React.FC<IChips>;
export default Chips;
