import type { Extension } from '@codemirror/state'; import type { DecorationSet, ViewUpdate } from '@codemirror/view'; import { ViewPlugin } from '@codemirror/view'; export interface HyperLinkState { from: number; to: number; url: string; } export declare function hyperLinkExtension(): ViewPlugin<{ decorations: DecorationSet; update(update: ViewUpdate): void; }, undefined>; export declare const hyperLinkStyle: Extension; export declare const hyperLink: Extension; //# sourceMappingURL=hyperlink.d.ts.map