import { Editor } from 'slate-vue3/core'; declare module 'slate-vue3/core' { interface BaseEditor { formatAlign: (value: string) => void; } } export type FormatAlign = 'left' | 'center' | 'right' | 'justify'; export declare function withAlign(editor: Editor): import("../types").CustomEditor;