import * as react from 'react';
import { HTMLAttributes } from 'react';
declare const badgeVariants: {
readonly default: "bg-tollerud-noir-700 text-tollerud-text-secondary";
readonly accent: "bg-tollerud-yellow/15 text-tollerud-yellow";
readonly success: "bg-tollerud-success/15 text-tollerud-success";
readonly error: "bg-tollerud-error/15 text-tollerud-error";
readonly info: "bg-tollerud-info/15 text-tollerud-info";
readonly warning: "bg-tollerud-yellow/15 text-tollerud-warning";
};
interface BadgeProps extends HTMLAttributes {
variant?: keyof typeof badgeVariants;
}
declare const Badge: react.ForwardRefExoticComponent>;
export { Badge, type BadgeProps };