import { HTMLAttributes } from 'react';
export type TagProps = {
dataId?: string;
color?: string;
icon?: string;
closable?: boolean;
onClose?: () => void;
type?: 'normal' | 'rounded';
variant?: 'primary' | 'outline';
iconAriaLabel?: string;
} & HTMLAttributes;
export declare const Tag: import('react').ForwardRefExoticComponent<{
dataId?: string;
color?: string;
icon?: string;
closable?: boolean;
onClose?: () => void;
type?: "normal" | "rounded";
variant?: "primary" | "outline";
iconAriaLabel?: string;
} & HTMLAttributes & {
dataId?: string;
} & import('react').RefAttributes>;