import { Node as ProseMirrorNode } from 'prosemirror-model'; import { NodeView, ViewMutationRecord } from 'prosemirror-view'; export declare class TableRowNodeView implements NodeView { node: ProseMirrorNode; cellMinWidth: number; dom: Element; table: HTMLTableElement; colgroup: Element; contentDOM: HTMLElement; constructor(node: ProseMirrorNode, cellMinWidth: number); update(node: ProseMirrorNode): boolean; ignoreMutation(mutation: ViewMutationRecord): boolean; }