export type Status = 'Ready' | 'Not Ready' | 'Partial Ready' | 'Failed' | 'Completed'; export type UpgradeStatus = 'READY' | 'NOT_READY' | 'PARTIAL_READY' | 'FAILED' | 'COMPLETED'; export declare const STATUS_ENTRIES: { [key: string]: Status; }; export declare const DEPENDENCIES_STATUS: { [key: string]: string; }; export declare enum UPGRADE_STATUS { NOT_READY = "not_ready", READY = "ready", COMPLETED = "completed", IN_PROGRESS = "in progress", FAILED = "failed" }