import { Editor } from 'slate-vue3/core'; import type { CustomEditor } from '../types'; declare module 'slate-vue3/core' { interface BaseEditor { insertImage: (url: string, file?: File, width?: number | string, height?: number | string) => void; } } export declare function withImage(editor: Editor): CustomEditor;