import { default as React } from 'react'; export interface BadgeProps extends React.HTMLAttributes { /** * The visual color appearance of the badge. * @default "gray" * @example "green" */ color?: 'gray' | 'green' | 'red' | 'blue' | 'yellow'; /** * The size of the badge. * @default "1" * @example "2" */ size?: '1' | '2'; /** * The variant of the badge. * @default "solid" * @example "outline" */ variant?: 'solid' | 'outline' | 'soft'; } export declare const Badge: React.ForwardRefExoticComponent>;