import { S as StageId } from '../stage-zMHyjRAs.js'; /** * Post-stage result */ interface PostStageResult { success: boolean; handoffGenerated: boolean; checkpointCreated: boolean; nextStage: string | null; } /** * Run post-stage tasks */ declare function runPostStageTasks(projectRoot: string, stageId: StageId): Promise; /** * CLI entry point */ declare function main(): Promise; export { type PostStageResult, main, runPostStageTasks };