/** * Stage-related type definitions */ /** * Valid stage IDs */ declare const STAGE_IDS: readonly ["01-brainstorm", "02-research", "03-planning", "04-ui-ux", "05-task-management", "06-implementation", "07-qa", "08-deployment"]; type StageId = (typeof STAGE_IDS)[number]; /** * Stage status */ declare const STAGE_STATUS: readonly ["pending", "in_progress", "completed", "skipped"]; type StageStatus = (typeof STAGE_STATUS)[number]; export type { StageId as S, StageStatus as a };