/** * Lifecycle phase. When used to define a `definitive` object, the priority is: `actual` > `planned` > `proposed`. */ export declare type PhaseEnum = "proposed" | "planned" | "actual"; export declare const PhaseEnum: { Proposed: PhaseEnum; Planned: PhaseEnum; Actual: PhaseEnum; };