export type FlowStage = "clarify" | "specify" | "plan" | "analyze" | "tasks" | "implement" | "validate"; export type FlowStatus = "active" | "blocked" | "paused" | "complete"; export interface FlowStateRecord { featureId: string; currentStage: FlowStage; status: FlowStatus; lastArtifact: string; nextAction: string; updatedAt: string; blockers?: string[]; artifactLineage?: string[]; notes?: string; targetContext?: string; } export declare function inferFlowState(root: string): Promise; export declare function loadFlowState(root: string): Promise; //# sourceMappingURL=load-flow-state.d.ts.map