import { Descendant, Editor } from 'slate-vue3/core'; declare module 'slate-vue3/core' { interface BaseEditor { serialize: () => string; deserialize: (html: string) => Descendant[]; setContent: (html: string) => void; getContent: () => string; } } export declare function withSerialize(editor: Editor): import("../types").CustomEditor;