import type { Editor } from '../../../externals.js'; import { Plugin } from '@tiptap/pm/state'; /** * Creates the TableHandlePlugin for managing table grips and context menus. * @param {Editor} editor The Tiptap editor instance to which the plugin will be attached. * @returns {Plugin} Returns a ProseMirror plugin instance that manages table grips and context menus. */ export declare const TableHandlePlugin: (editor: Editor) => Plugin;