import { Position } from '../../ToolbarPlugin'; export type Actions = 'insertRowAbove' | 'insertRowBelow' | 'deleteRow' | 'deleteTable' | 'insertColumnLeft' | 'insertColumnRight' | 'deleteColumn'; interface TableCellContextMenuProps { position: Position; parentScrollPosition: number; onAction: (action: Actions) => void; } export declare const TableCellContextMenu: ({ position, parentScrollPosition, onAction }: TableCellContextMenuProps) => import("react").JSX.Element; export {};