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