import { VariantProps } from 'class-variance-authority'; import { default as React } from 'react'; declare const badgeVariants: (props?: ({ variant?: "success" | "secondary" | "destructive" | "outline" | "default" | "warning" | null | undefined; } & import('class-variance-authority/dist/types').ClassProp) | undefined) => string; export type IBadgeVariant = VariantProps['variant']; declare const Badge: React.ForwardRefExoticComponent, HTMLSpanElement>, "ref"> & VariantProps<(props?: ({ variant?: "success" | "secondary" | "destructive" | "outline" | "default" | "warning" | null | undefined; } & import('class-variance-authority/dist/types').ClassProp) | undefined) => string> & { asChild?: boolean; dataTestId?: string; } & React.RefAttributes>; export { Badge, badgeVariants };