import type { EvidenceType, ReviewResult, Severity } from "./types.js"; export { TASK_STATUS_ALIASES, TASK_STATUSES, normalizeTaskStatus, } from "./task-status.js"; export declare const WORKFLOW_DIR = ".agent-workflow"; export declare const DIRECTORIES: string[]; export declare const FILES: { config: string; policy: string; roles: string; tasks: string; locks: string; events: string; sourceOfTruth: string; agentLessons: string; }; export declare const ACTIVE_RUNTIME_FILE = "active-runtime.json"; export declare const EVENT_TYPES: string[]; export declare const REVIEW_RESULTS: ReviewResult[]; export declare const SEVERITIES: Severity[]; export declare const EVIDENCE_TYPES: EvidenceType[]; export declare const EVIDENCE_TYPE_ALIASES: Record; export declare const REVIEW_ROLE_ALIASES: Record;