import React from "react"; /** * Props for the RadarChart component */ interface RadarChartProps { /** Current availability security level */ availabilityLevel: string; /** Current integrity security level */ integrityLevel: string; /** Current confidentiality security level */ confidentialityLevel: string; /** Additional CSS class names */ className?: string; /** Test ID for automated testing */ testId?: string; } /** * Radar chart visualization of the CIA security triad * * ## Business Perspective * * Provides an intuitive visual representation of the security posture * across all three CIA triad dimensions, enabling at-a-glance assessment * of security balance and identifying areas needing improvement. 📊 * * @example * ```tsx * * ``` */ declare const RadarChart: React.FC; export default RadarChart; //# sourceMappingURL=RadarChart.d.ts.map