import { HTMLAttributes } from 'react'; export interface BadgeProps extends HTMLAttributes { variant?: "success" | "warning" | "error" | "info" | "default" | "primary-subtle" | "secondary" | "outline"; size?: "sm" | "md"; dot?: boolean; /** Force the dot to pulse (error already pulses regardless). */ pulse?: boolean; } export declare const Badge: import('react').ForwardRefExoticComponent>; //# sourceMappingURL=Badge.d.ts.map