CIA Compliance Manager API Documentation - v1.0.1
    Preparing search index...
    CIALevelsOnly: Pick<
        AllCIAComponentsProps,
        "availabilityLevel"
        | "integrityLevel"
        | "confidentialityLevel",
    >

    Extract only the CIA level props from AllCIAComponentsProps

    Useful when you need just the security levels without other widget props.

    const levels: CIALevelsOnly = {
    availabilityLevel: 'High',
    integrityLevel: 'Very High',
    confidentialityLevel: 'Moderate'
    };