import type { RefObject } from 'react'; import type { Editor as TiptapEditor } from '@tiptap/core'; import type { CellPosition } from '../TableCellMenu'; interface UseTableCellMenuParams { tiptapEditor: TiptapEditor | null; iframeRef: RefObject; } interface UseTableCellMenuReturn { cellPosition: CellPosition | null; isOverMenu: boolean; setIsOverMenu: (value: boolean) => void; addRowBelow: () => void; addRowAbove: () => void; addColumnAfter: () => void; addColumnBefore: () => void; deleteRow: () => void; deleteColumn: () => void; deleteTable: () => void; } export default function useTableCellMenu({ tiptapEditor, iframeRef }: UseTableCellMenuParams): UseTableCellMenuReturn; export {}; //# sourceMappingURL=useTableCellMenu.d.ts.map