import type { DriftFinding, KnowledgeGraph, KnowledgeModelingAdapter, KnowledgeModelingOptions, KnowledgeProjections } from "./types.js"; export type { DriftFinding, KnowledgeGraph, KnowledgeModelingAdapter, KnowledgeModelingOptions, KnowledgeProjections, }; /** * Build a Canonical Knowledge Graph from intent and domain models. */ export declare function buildKnowledgeGraph(options: KnowledgeModelingOptions, adapter?: KnowledgeModelingAdapter): KnowledgeGraph; /** * Project Mission, Expedition, ADR, and documentation artifacts from a * knowledge graph. */ export declare function projectKnowledge(graph: KnowledgeGraph, adapter?: KnowledgeModelingAdapter): KnowledgeProjections; /** * Detect drift between a knowledge graph and a prior projection snapshot. */ export declare function detectDrift(graph: KnowledgeGraph, snapshot: KnowledgeProjections, adapter?: KnowledgeModelingAdapter): DriftFinding[];