import type React from 'react'; import type { Editor } from '@tiptap/react'; import '@tiptap/extension-table'; export interface ITableEdgeControlsProps { editor: Editor | null; } /** * TableEdgeControls - Control elements displayed around tables using React Portal * Uses React Portal to show row/column add buttons outside of the table */ export declare const TableEdgeControls: React.FC; //# sourceMappingURL=TableEdgeControls.d.ts.map