import { IconDefinition } from "@fortawesome/fontawesome-svg-core"; import * as React from "react"; import { CSSProperties } from "react"; export interface TagProps { variant?: TagVariant; label?: string; size?: TagSize; className?: string; style?: CSSProperties; icon?: IconDefinition; } export type TagVariant = "info" | "info-strong" | "error" | "error-strong" | "warning" | "warning-strong" | "success" | "success-strong" | "passive"; export type TagSize = "medium" | "small"; export declare const Tag: React.FC;