import React from 'react';
import { FlexProps } from '../Flex';
export interface TagProps extends FlexProps {
    /**
     * What happens when the "X" button is pressed. No "X" button is rendered, if this prop is not
     * specified
     * */
    onRemove?: () => void;
}
/** A chip is an entry in a combobox, but can be used anywhere */
declare const Tag: React.FC<TagProps>;
export default Tag;
