/** * CLI: kivo consistency-check — FR-Z09 知识条目一致性门禁 * * Checks knowledge entries for contradictions, stale references, * and semantic drift. Exit code 1 if errors found (CI integration). */ import type { ConsistencyReport, ConsistencyCheckOptions } from '../consistency/consistency-types.js'; import type { KnowledgeEntry } from '../types/index.js'; export declare function formatConsistencyReport(report: ConsistencyReport): string; export interface ConsistencyCheckRunOptions { entries: KnowledgeEntry[]; options?: ConsistencyCheckOptions; json?: boolean; } export declare function runConsistencyCheck(opts: ConsistencyCheckRunOptions): { report: ConsistencyReport; output: string; }; //# sourceMappingURL=consistency-check.d.ts.map