import { FC, ReactNode } from 'react';
import { EColors } from '../../types/EColors';
interface TagProps {
title: string;
onClick: () => void;
showCloseButton?: boolean;
icon?: ReactNode;
color?: EColors;
}
declare const Tag: FC<TagProps>;
export default Tag;