import { Extension } from '@tiptap/core'; /** * Word-style keyboard shortcuts that StarterKit doesn't ship by default. * * - `Ctrl/⌘+1..6` → Headings 1–6 * - `Ctrl/⌘+0` (zero) → paragraph (normal) * - `Ctrl/⌘+Alt+1..6` → also headings (Word's actual binding) * - `Ctrl/⌘+Shift+L` → toggle bullet list * - `Ctrl/⌘+Shift+O` → toggle ordered list * - `Ctrl/⌘+L / E / R / J` → align left / center / right / justify * - `Ctrl/⌘+Enter` → page break * - `Ctrl/⌘+Shift+X` → strikethrough * - `Ctrl/⌘+.` / `Ctrl/⌘+,` → super- / subscript * - `Ctrl/⌘+Shift+H` → highlight (toggle yellow on selection) * * These mirror Microsoft Word and Google Docs defaults. */ export declare const WordShortcuts: Extension;