import type { BadgeNewProps } from './types'; /** * __BadgeNew__ * * New visual refresh implementation of Badge component for the labelling system. * This component is used when the 'platform-dst-lozenge-tag-badge-visual-uplifts' feature flag is enabled. * * Uses new appearance naming convention: * - success (green) * - danger (red) * - neutral (gray) * - information (blue) * - inverse (inverted colors) * - warning (orange/yellow) * - discovery (purple) */ declare const BadgeNew: import('react').NamedExoticComponent; export default BadgeNew;