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