import React from 'react';
import { ITag } from './types/tag';
/**
 * @deprecated Try TagV2 component that will override this component in the next major
 */
declare const Tag: <V, S>(p: ITag<V, S> & {
    ref?: React.ForwardedRef<HTMLDivElement> | undefined | null;
}) => JSX.Element;
/**
 * @description
 * Tag component is used to highlight or categorize important information.
 */
export { Tag };
