import lsp from 'vscode-languageserver'; import type { CstNode } from 'chevrotain'; import type { SymbolTable } from '../java/symbol-table.js'; /** * Provide inlay hints (parameter names, inferred types). */ export declare function provideInlayHints(cst: CstNode, table: SymbolTable, range: lsp.Range): lsp.InlayHint[]; //# sourceMappingURL=inlay-hints.d.ts.map