export type CommandPhaseId = "setup" | "operate" | "maintain" | "advanced"; export interface PhaseMapping { phase: CommandPhaseId; primaryInPhase: boolean; } export declare const COMMAND_PHASE_MAP: Record; export declare function resolveCommandPhase(commandId: string): PhaseMapping; export declare const PHASE_LABELS: Record; export declare const PHASE_ORDER: readonly CommandPhaseId[]; //# sourceMappingURL=command-phase-mapping.d.ts.map