import React from "react"; import { SecurityLevel, CIAComponent } from "../../../types/cia"; /** * Props for CIAComponentDetails component */ export interface CIAComponentDetailsProps { component: CIAComponent; level: SecurityLevel; details: unknown; ciaContentService: unknown; testId: string; getTechnicalDescription: (component: CIAComponent, level: SecurityLevel) => string; getTechnicalRequirements: (component: CIAComponent, level: SecurityLevel) => string[]; getTechnologies: (component: CIAComponent, level: SecurityLevel) => string; getConfigurations: (component: CIAComponent, level: SecurityLevel) => string; getExpertiseRequired: (component: CIAComponent, level: SecurityLevel) => string[]; } /** * Reusable component for displaying CIA component details * Handles rendering for confidentiality, integrity, or availability */ export declare const CIAComponentDetails: React.FC; //# sourceMappingURL=CIAComponentDetails.d.ts.map