import { type VariantProps } from 'class-variance-authority'; import type * as React from 'react'; declare const badgeVariants: (props?: ({ variant?: "default" | "secondary" | "destructive" | "outline" | "ghost" | "link" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; declare function Badge({ className, variant, ...props }: React.ComponentProps<'span'> & VariantProps): React.JSX.Element; export { Badge, badgeVariants }; //# sourceMappingURL=badge.d.ts.map