import React from 'react';
import { ITag } from './types/tag';
declare const Tag: <V, S>(props: ITag<V> & React.RefAttributes<HTMLDivElement>) => JSX.Element;
/**
 * @description
 * Tag component is used to highlight or categorize important information.
 */
export { Tag as TagV2 };
