import { CompletionContext } from "@codemirror/autocomplete"; import { HintPathType } from "../CodeEditor/interface"; export declare const hintPlugin: (hintPaths: HintPathType[]) => (context: CompletionContext) => { from: number; options: import("@codemirror/autocomplete").Completion[]; to?: undefined; } | { from: number; to: number; options: any; } | null;