/// import "./styles/index.scss"; import type { CommandFn, EditorKit, LeafContext } from "doc-editor-core"; import { LeafPlugin } from "doc-editor-core"; import type { RenderLeafProps } from "doc-editor-delta"; export declare class HyperLinkPlugin extends LeafPlugin { private editor; private readonly; key: string; private popupModel; constructor(editor: EditorKit, readonly: boolean); destroy(): void; match(props: RenderLeafProps): boolean; onCommand?: CommandFn; render(context: LeafContext): JSX.Element; }