import { Editor, Node, Range } from 'slate-vue3/core'; export declare const languageOptions: { value: string; label: string; }[]; declare module 'slate-vue3/core' { interface BaseEditor { decorate: (nodeList: Node[]) => Range[]; formatCodeBlock: () => void; isCodeBlockActive: () => boolean; } } export declare function withCodeBlock(editor: Editor): import("../types").CustomEditor;