import { type SourceRef } from "./instructions-model.js"; type InstructionCheckFinding = { readonly id: string; readonly ruleId: string; readonly severity: "drift"; readonly sourceRefs: readonly SourceRef[]; readonly suggestedFix: string; readonly summary: string; }; type InstructionCheckReport = { readonly adoptedPath: string; readonly adoptedRules: number; readonly findings: readonly InstructionCheckFinding[]; readonly limitations: readonly string[]; readonly projectDir: string; readonly schemaVersion: "instructions-check.1"; readonly skippedRules: readonly string[]; }; export declare function readInstructionCheckReport(projectDir: string): InstructionCheckReport; export declare function formatInstructionCheckReport(report: InstructionCheckReport): string; export {};