import * as react_jsx_runtime from 'react/jsx-runtime'; 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?: "warning" | "destructive" | "success" | "primary" | "outline" | "secondary" | "inverted" | null | undefined; size?: "default" | "sm" | null | undefined; } & class_variance_authority_types.ClassProp) | undefined) => string; interface BadgeProps extends React.HTMLAttributes, VariantProps { } declare function Badge({ className, variant, size, ...props }: BadgeProps): react_jsx_runtime.JSX.Element; export { Badge, type BadgeProps, badgeVariants };