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