import * as class_variance_authority_types from 'class-variance-authority/types'; import * as React from 'react'; import { VariantProps } from 'class-variance-authority'; declare const badgeVariants: (props?: ({ variant?: "link" | "primary" | "secondary" | "action" | "success" | "warning" | "danger" | "info" | "light" | "dark" | "accent" | "destructive" | "muted" | "ghost" | null | undefined; size?: "sm" | "default" | "lg" | null | undefined; appearance?: "solid" | "outline" | "outline-filled" | null | undefined; } & class_variance_authority_types.ClassProp) | undefined) => string; type BadgeVariant = NonNullable['variant']>; type BadgeSize = NonNullable['size']>; type BadgeAppearance = NonNullable['appearance']>; interface BadgeProps extends React.HTMLAttributes, VariantProps { asChild?: boolean; } declare function Badge({ className, variant, size, appearance, asChild, ...props }: React.ComponentProps<'span'> & VariantProps & { asChild?: boolean; }): React.JSX.Element; export { Badge, type BadgeAppearance, type BadgeProps, type BadgeSize, type BadgeVariant, badgeVariants };