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