import { type EditorView } from "@codemirror/view"; import { type HoverOptions } from "../features/hover"; import { Side } from "../types"; export type JSON5HoverOptions = Exclude; /** * Instantiates a JSONHover instance with the JSON5 mode * @group Codemirror Extensions */ export declare function json5SchemaHover(options?: JSON5HoverOptions): (view: EditorView, pos: number, side: Side) => Promise;