export interface Doc { id: string; title: string; description: string; category: string; module: string; content: string; filePath: string; } export declare class DocStore { private docsRoot; private docs; private allDocs; constructor(docsRoot: string); /** Load all docs from filesystem */ load(activeModules: string[]): Promise; getDoc(id: string): Doc | undefined; getAllDocs(): Doc[]; listDocs(category?: string, module?: string): Doc[]; }