import { Hover } from 'vscode-languageserver'; import type { Position as LspPosition } from 'vscode-languageserver'; import type { Token } from '@angriff36/manifest/types'; import type { IR } from '@angriff36/manifest/ir'; /** * Provide hover information at the given position. */ export declare function getHover(tokens: Token[], ir: IR | null, position: LspPosition): Hover | null; //# sourceMappingURL=hover.d.ts.map