import { type Tooltip } from "@codemirror/view"; import { type TooltipRenderer } from "./renderTooltip.js"; /** * This binds the CodeMirror `hoverTooltip` method * with a code that pulls types and documentation * from the TypeScript environment. */ export declare function tsHover({ renderTooltip, }?: { renderTooltip?: TooltipRenderer; }): import("@codemirror/state").Extension & { active: import("@codemirror/state").StateField; }; //# sourceMappingURL=tsHover.d.ts.map