import * as React from 'react'; import { type VariantProps } from 'class-variance-authority'; export declare const TagVariant: { primary: string; success: string; accent: string; social: string; warning: string; against: string; for: string; destructive: string; }; export declare const TagSize: { default: string; sm: string; }; declare const tagVariants: (props?: ({ variant?: string | number | null | undefined; size?: string | number | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export interface TagProps extends React.ButtonHTMLAttributes, VariantProps { } declare function Tag({ className, variant, size, ...props }: TagProps): import("react/jsx-runtime").JSX.Element; export { Tag, tagVariants };