import type { RepoManifest } from "../types.js"; export interface FileIntegrityResult { changed_files: string[]; missing_files: string[]; io_errors: string[]; is_clean: boolean; } export declare function checkFileIntegrity(root: string, manifest: RepoManifest, scope?: string[]): Promise; //# sourceMappingURL=fileIntegrity.d.ts.map