import { Placement } from '@floating-ui/dom'; export type Status = 'off' | 'standby' | 'normal' | 'caution' | 'serious' | 'critical'; export type Classification = 'cui' | 'controlled' | 'confidential' | 'secret' | 'top-secret' | 'top-secret-sci' | 'unclassified'; export type StatusTypes = { [id: string]: boolean; }; export type StatusTags = 'pass' | 'fail' | 'unknown'; export declare enum StatusSymbol { CRITICAL = "critical", SERIOUS = "serious", CAUTION = "caution", NORMAL = "normal", STANDBY = "standby", OFF = "off" } export declare type ExtendedPlacement = Placement | 'auto';