import { type VariantProps } from 'class-variance-authority'; import type { HTMLAttributes } from 'react'; declare const badgeVariants: (props?: ({ variant?: "default" | "outline" | "destructive" | "success" | "secondary" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export interface BadgeProps extends HTMLAttributes, VariantProps { } declare function Badge({ className, variant, ...props }: BadgeProps): import("react").JSX.Element; export { Badge, badgeVariants }; //# sourceMappingURL=badge.d.ts.map