export interface DocFile { path: string; type: 'readme' | 'changelog' | 'api' | 'guide' | 'markdown' | 'jsdoc'; lastModified?: number; } /** * Detect all documentation files in the project. * Returns: README.md, CHANGELOG.md, docs/, JSDoc comments, docstrings, API docs */ export declare function detectDocFiles(cwd: string): DocFile[]; /** * Build a prompt that tells the AI to sync documentation with code. */ export declare function buildDocsUpdatePrompt(cwd: string): string; /** * Print documentation status summary. */ export declare function printDocsSyncStatus(docFiles: DocFile[], coveredExports?: number, totalExports?: number): void; export declare function getProjectLanguage(cwd: string): 'typescript' | 'javascript' | 'python' | 'rust' | 'unknown'; export declare function getDocumentationFiles(cwd: string): DocFile[]; export declare function hasReadme(cwd: string): boolean; export declare function hasChangelog(cwd: string): boolean; export declare function hasDocsDirectory(cwd: string): boolean;