export declare class ContextEnhancementService { private readonly logger; private readonly projectContextCache; private readonly CACHE_TTL; loadProjectContext(workingDir: string): Promise; enhancePromptWithProjectContext(prompt: string, workingDir: string, options?: { includeProjectContext?: boolean; maxProjectContextLength?: number; }): Promise; hasProjectContext(workingDir: string): Promise; createSampleClaudeMd(workingDir: string, projectName?: string): Promise; clearCache(): void; }