import { type Hover, type Position } from "vscode-languageserver"; import type { TextDocument } from "vscode-languageserver-textdocument"; /** * Hover over an action key (a step's `"goTo"`, `"find"`, …) surfaces that * action's description straight from the schema — one source of truth, no * hand-written copies. Spec + JSON only. */ export declare function computeHover(doc: TextDocument, position: Position): Hover | null; //# sourceMappingURL=hover.d.ts.map