import type Database from 'better-sqlite3'; import type { CheckResult } from './types'; /** * Verify every SRC document has a corresponding file on the filesystem. * SRC documents with a path field are verified for existence; absolute paths * are used directly, relative paths are resolved against projectFolder. * Non-fixable — reports missing files only. */ export declare function srcFilesystemOnlyCheck(db: Database.Database, projectFolder: string, sprintId?: string): CheckResult; //# sourceMappingURL=src-filesystem-only-check.d.ts.map