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