import type { Hover, Position } from '../types.js'; import type { LocalSsjsFunction } from '../utils/markdown.js'; /** * Return hover documentation for an SSJS document at the given line/position. * @param line - The current document line text. * @param position - The cursor position. * @param localFunctions - Local function declarations from the document. * @returns Hover object with Markdown documentation, or null. */ export declare function getSsjsHover(line: string, position: Position, localFunctions: LocalSsjsFunction[]): Hover | null; //# sourceMappingURL=ssjs.d.ts.map