import React from 'react';
import { ChipsterItemProps } from './types';
export declare const ChipsterItem: ({ item, itemClassName, highlightedClassName, disabledClassName, iconClassName, removeButtonClassName, removeIcon, render, index, }: ChipsterItemProps & {
    index?: number | undefined;
    removeIcon?: React.ReactNode;
}) => JSX.Element;
