export interface DiskAlert { type: "disk"; } export interface MemoryAlert { type: "memory"; } export interface CPUProcAlert { type: "cpu-process"; pids: string[]; } export interface CPUCGAlert { type: "cpu-cgroup"; } export declare type Alert = DiskAlert | MemoryAlert | CPUProcAlert | CPUCGAlert; export declare type AlertType = Alert["type"]; export interface ProjectStatus { version: number; alerts: Alert[]; }