import * as react_jsx_runtime from 'react/jsx-runtime'; import { RiskRating } from './types.js'; interface RiskRatingDisplayProps { /** The risk rating to display */ rating: RiskRating | null | undefined; /** Show the rating value badge */ showBadge?: boolean; /** Show the level label text */ showLabel?: boolean; /** Size variant */ size?: "sm" | "md"; } /** * Display component for risk ratings. * Shows a colored badge with the rating value and level label. * Handles "not rated" state gracefully. */ declare function RiskRatingDisplay({ rating, showBadge, showLabel, size, }: RiskRatingDisplayProps): react_jsx_runtime.JSX.Element; export { RiskRatingDisplay, type RiskRatingDisplayProps };