import { Editor } from "@tiptap/core"; interface ContextMenuProps { x: number; y: number; onClose: () => void; onAction: (action: string) => void; editor: Editor; } export declare const TableContextMenu: ({ x, y, onClose, onAction, editor, }: ContextMenuProps) => import("react/jsx-runtime").JSX.Element; export {};