import { Location } from 'slate'; import { AngularEditor } from 'slate-angular'; import { CustomElement } from '../../custom-types'; export declare const LinkEditor: { wrapLink(editor: AngularEditor, text: string, url: string): void; unwrapLink(editor: AngularEditor, at?: Location): void; isLinkActive(editor: AngularEditor): boolean; getLinkElement(editor: AngularEditor): import("slate").NodeEntry; };