import React from 'react'; import { SecurityLevel } from '../../types/cia'; interface SecurityLevelBadgeProps { /** * The category of the security level (e.g., "Availability") */ category: string; /** * The security level to display */ level: SecurityLevel; /** * Custom color class for the badge background */ colorClass?: string; /** * Custom color class for the badge text */ textClass?: string; /** * Additional CSS classes */ className?: string; /** * Test ID for automated testing */ testId?: string; } /** * Displays a security level in a badge format * * ## Business Perspective * * Provides consistent visual indicators of security levels throughout * the application, enabling users to quickly identify the security * stance for different components of the CIA triad. 🔒 */ declare const SecurityLevelBadge: React.FC; export default SecurityLevelBadge; //# sourceMappingURL=SecurityLevelBadge.d.ts.map