export declare type Status = 'off' | 'standby' | 'normal' | 'caution' | 'serious' | 'critical'; export declare type Classification = 'cui' | 'controlled' | 'confidential' | 'secret' | 'top-secret' | 'top-secret-sci' | 'unclassified'; export declare type StatusTypes = { [id: string]: boolean; }; export declare type StatusTags = 'pass' | 'fail' | 'unknown';