export declare function initDocsContext(opts: { repoRoot: string; submodules: readonly string[]; }): void; export interface DocCommit { date: string; message: string; } export interface DocFileInfo { path: string; dir: string; commits: DocCommit[]; lastCommitDate: string | null; lastCommitAgeDays: number | null; untracked: boolean; } /** * Scan for .md files across the parent repo and all submodules. * Uses `git ls-files` to only find tracked files (skips .venv, node_modules, etc.). */ export declare function scanDocs(opts: { commitCount?: number; dir?: string; noSubmodules?: boolean; staleDays?: number; }): Promise; //# sourceMappingURL=docs.d.ts.map