import { useRender } from "@base-ui/react/use-render"; import { type VariantProps } from "class-variance-authority"; declare const badgeVariants: (props?: ({ variant?: "default" | "destructive" | "link" | "secondary" | "outline" | "ghost" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; declare function Badge({ className, variant, render, ...props }: useRender.ComponentProps<"span"> & VariantProps): import("react").ReactElement>; export { Badge, badgeVariants };