import { VariantProps } from 'class-variance-authority'; import * as React from "react"; declare const badgeVariants: (props?: ({ variant?: "disabled" | "default" | "secondary" | "success" | "error" | "info" | "warning" | "light" | null | undefined; outline?: "none" | "bordered" | null | undefined; type?: "button" | "default" | null | undefined; size?: "default" | "sm" | "lg" | "md" | null | undefined; shape?: "circle" | "default" | "square" | null | undefined; } & import('class-variance-authority/types').ClassProp) | undefined) => string; export interface BadgeProps extends React.HTMLAttributes, VariantProps { } declare function Badge({ className, variant, outline, type, size, shape, ...props }: BadgeProps): import("react/jsx-runtime").JSX.Element; export default Badge;