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