import * as react_jsx_runtime from 'react/jsx-runtime'; import * as class_variance_authority_types from 'class-variance-authority/types'; import { VariantProps } from 'class-variance-authority'; import * as React from 'react'; declare const badgeVariants: (props?: ({ variant?: "default" | "destructive" | "outline" | "secondary" | null | undefined; } & class_variance_authority_types.ClassProp) | undefined) => string; interface BadgeProps extends React.HTMLAttributes, VariantProps { } declare function Badge({ className, variant, ...props }: BadgeProps): react_jsx_runtime.JSX.Element; export { Badge, type BadgeProps, badgeVariants };