import { Editor, Location } from 'slate-vue3/core'; declare module 'slate-vue3/core' { interface BaseEditor { formatLink: (url: string, target: string, text: string) => void; unwrapLink: (at?: Location) => void; } } export declare function withLink(editor: Editor): import("../types").CustomEditor;