export declare const TASK_TYPES: readonly ["bug", "feature", "content", "accessibility", "performance", "other"]; export declare const PRIORITY_LEVELS: readonly ["low", "medium", "high", "critical"]; export declare const TASK_STATUSES: readonly ["new", "backlog", "ai_working", "blocked", "needs_review", "done", "closed"]; export type TaskType = typeof TASK_TYPES[number]; export type Priority = typeof PRIORITY_LEVELS[number]; export type TaskStatus = typeof TASK_STATUSES[number]; export declare const VALID_TRANSITIONS: Record; //# sourceMappingURL=constants.d.ts.map