export declare const PROJECT_KNOWLEDGE_PATH = ".setup-agents/project-knowledge.md"; export declare const KNOWLEDGE_MANIFEST_PATH = ".setup-agents/knowledge-manifest.json"; export type ProjectKnowledgeSection = { heading: string; content: string; }; export declare function projectKnowledgePath(cwd: string): string; export declare function readProjectKnowledge(cwd: string): string | null; export declare function projectKnowledgeExists(cwd: string): boolean; export declare function writeProjectKnowledge(cwd: string, content: string): string; export declare function generateProjectKnowledgeTemplate(): string; export declare function projectKnowledgeRuleReference(): string[]; export declare const CLASS_CATALOG_PATH = ".setup-agents/class-catalog.md"; export declare function classCatalogPath(cwd: string): string; export declare function classCatalogExists(cwd: string): boolean; export declare function readClassCatalog(cwd: string): string | null; export declare function writeClassCatalog(cwd: string, content: string): string; export declare function generateClassCatalogTemplate(): string; export declare const DOC_INDEX_PATH = ".setup-agents/doc-index.md"; export declare function docIndexPath(cwd: string): string; export declare function docIndexExists(cwd: string): boolean; export declare function readDocIndex(cwd: string): string | null; export declare function writeDocIndex(cwd: string, content: string): string; export declare function generateDocIndexTemplate(): string;