import type { Editor } from "@tiptap/core"; import { Plugin } from "@tiptap/pm/state"; /** * Focus plugin based on `extension-focus`, but only for table cells and with * a small fix to prevent focus jumping when it's a cell selection. * Applies a className of `focusedCell` to the cell that is focused. * See: https://github.com/ueberdosis/tiptap/blob/v2.11.5/packages/extension-focus/src/focus.ts */ export declare function tableCellFocusPlugin(editor: Editor): Plugin;