import type { EditorAnalyticsAPI } from '@atlaskit/editor-common/analytics'; import type { EventDispatcher } from '@atlaskit/editor-common/event-dispatcher'; import type { Node as PMNode } from '@atlaskit/editor-prosemirror/model'; import type { EditorView, NodeView } from '@atlaskit/editor-prosemirror/view'; import TableNodeView from './TableNodeViewBase'; export default class TableCell extends TableNodeView implements NodeView { private delayHandle; constructor(node: PMNode, view: EditorView, getPos: () => number | undefined, eventDispatcher: EventDispatcher, editorAnalyticsAPI: EditorAnalyticsAPI | undefined); destroy: () => void; update(node: PMNode): boolean; private updateNodeView; }