import * as React from "react"; import { type VariantProps } from "class-variance-authority"; declare const coreBadgeVariants: (props?: ({ variant?: "link" | "default" | "outline" | "secondary" | "destructive" | "ghost" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; declare function Badge({ className, variant, asChild, children, ...props }: React.ComponentProps<"span"> & VariantProps & { asChild?: boolean; }): import("react/jsx-runtime").JSX.Element; declare namespace Badge { var displayName: string; } export interface EnhancedBadgeProps extends React.ComponentProps<"span">, VariantProps { asChild?: boolean; } declare const enhancedBadgeVariants: (props?: ({ variant?: "link" | "default" | "outline" | "secondary" | "destructive" | "ghost" | "success" | "warning" | "info" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; declare const EnhancedBadge: React.ForwardRefExoticComponent & React.RefAttributes>; export { Badge, coreBadgeVariants, EnhancedBadge, enhancedBadgeVariants }; export { Badge as CoreBadge, enhancedBadgeVariants as badgeVariants }; export type { EnhancedBadgeProps as BadgeProps }; //# sourceMappingURL=badge.d.ts.map