import React from "react"; interface RiskLevelBadgeProps { /** * Risk level to display */ risk: string; /** * Additional class names */ className?: string; /** * Test ID for testing */ testId?: string; /** * Show icon along with risk level */ showIcon?: boolean; } /** * Badge for displaying risk levels with appropriate styling */ declare const RiskLevelBadge: React.FC; export default RiskLevelBadge; //# sourceMappingURL=RiskLevelBadge.d.ts.map