import * as react_jsx_runtime from 'react/jsx-runtime'; import { ImpactLevel, ImpactScalePreset, ImpactScaleConfig } from './scales.js'; import 'react-intl'; interface ImpactBadgeProps { /** Impact level 0-5 */ level: ImpactLevel | number | null | undefined; /** Scale preset or custom scale config */ scale?: ImpactScalePreset | ImpactScaleConfig; /** Show numeric value before label */ showValue?: boolean; /** Additional class names */ className?: string; } /** * ImpactBadge displays an impact level as a colored badge. * * @example * ```tsx * * * ``` */ declare function ImpactBadge({ level, scale, showValue, className, }: ImpactBadgeProps): react_jsx_runtime.JSX.Element; export { ImpactBadge, type ImpactBadgeProps };