import lsp from 'vscode-languageserver'; import type { SymbolTable } from '../java/symbol-table.js'; import type { CstNode } from 'chevrotain'; /** * Provide hover information for a symbol at the given position. */ export declare function provideHover(cst: CstNode, table: SymbolTable, text: string, line: number, character: number): lsp.Hover | null; //# sourceMappingURL=hover.d.ts.map