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