import { IGraph } from '../../../types'; declare const useCellActions: (graph: IGraph, editable: boolean) => { copyCell: { visible: boolean; disabled: boolean; action: () => void; }; duplicateCell: { visible: boolean; disabled: boolean; action: () => void; }; pasteCell: { disabled: boolean; visible: boolean; action: () => Promise; }; removeCell: { visible: boolean; disabled: boolean; action: () => Promise; }; }; export default useCellActions;