/** * LSP Context Enricher * * Injects diagnostics and type information into message context. * Used to provide compiler feedback to the LLM without explicit tool calls. */ export declare function enrichContextWithDiagnostics(filePaths: string[], projectRoot: string): Promise; /** * Get a quick health check of a file's diagnostic state */ export declare function getFileDiagnosticSummary(filePath: string, projectRoot: string): Promise; //# sourceMappingURL=lsp-context-enricher.d.ts.map