import React from 'react'; import Badge from '../Badge'; import { ContentNode } from '../../types'; type ImpactType = 'critical' | 'serious' | 'moderate' | 'minor'; interface ImpactBadgeProps extends Omit, 'children'> { type: ImpactType; label?: ContentNode; } declare const ImpactBadge: React.ForwardRefExoticComponent & React.RefAttributes>; export default ImpactBadge;