import type { Hover, Position } from '../types.js'; /** * Return hover documentation for an AMPscript document at the given line/position. * @param line - The current document line text. * @param position - The cursor position. * @param fullText - Optional full document text used for variable type inference. * @returns Hover object with Markdown documentation, or null. */ export declare function getAmpscriptHover(line: string, position: Position, fullText?: string): Hover | null; //# sourceMappingURL=ampscript.d.ts.map