import type { Editor } from '@tiptap/core'; /** * WPS/Word Alt+Shift+↑ / Alt+Shift+↓: swap the current block with the * adjacent sibling inside the nearest movable container. */ export declare function moveDocumentBlock(editor: Editor, direction: -1 | 1): boolean;