import type { InstructionFileSpec, InstructionFileStatusReport } from "./instruction-types.js"; export declare function detectStaleInstructionFiles({ root, specs, }: { root?: string; specs: InstructionFileSpec[]; }): Promise; export declare function detectStaleInstructionFilesFromManifest({ root, manifestPath, }: { root?: string; manifestPath: string; }): Promise;