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