export type AdrStatus = "Accepted" | "Proposed" | "Rejected" | "Superseded" | "Unknown"; export type AdrRegistry = Record; /** Load the authoritative ADR registry from docs/adr/*.md */ export declare function loadAdrRegistry(): AdrRegistry; /** Look up an ADR status by id (e.g. "ADR-046"). */ export declare function getAdrStatus(id: string, registry: AdrRegistry): AdrStatus;