import * as React from 'react'; export interface BadgeProps extends React.HTMLAttributes { /** Visual variant */ variant?: 'neutral' | 'primary' | 'success' | 'warning' | 'danger'; /** Size variant */ size?: 'sm' | 'md' | 'lg'; /** Show as a dot without content */ dot?: boolean; /** Badge content */ children?: React.ReactNode; } /** * Badge - Status and count indicator * * Versatile component for displaying status, counts, or notifications. * Can be used inline or positioned absolutely on parent elements. */ export declare const Badge: React.ForwardRefExoticComponent>; //# sourceMappingURL=Badge.d.ts.map