export interface PhaseExecutionIdParts { step: string; iteration: number; phase: 1 | 2 | 3; sequence: number; } export declare function buildPhaseExecutionId(parts: PhaseExecutionIdParts): string; export declare function parsePhaseExecutionId(phaseExecutionId: string): PhaseExecutionIdParts | undefined; //# sourceMappingURL=phaseExecutionId.d.ts.map