import { BoxProps } from "../Box"; import { ICON_TYPE } from "../Icon"; export declare enum TAG_VARIANT { PRIMARY = "primary", SECONDARY = "secondary" } export interface TagProps extends BoxProps { variant?: TAG_VARIANT; filled?: boolean; clickable?: boolean; toggleable?: boolean; icon?: ICON_TYPE; } export declare const Tag: { ({ variant, clickable, filled, toggleable, icon, as: Component, className, children, ...rest }: TagProps): JSX.Element; Group: ({ className, ...rest }: BoxProps) => JSX.Element; };