import { IButtonMenu, IDomEditor } from '@wangeditor-next/core'; import { NodeEntry } from 'slate'; import TableProperty, { FieldName } from './TableProperty'; declare class CellProperty extends TableProperty implements IButtonMenu { readonly title: string; readonly iconSvg = ""; readonly tag = "button"; readonly showModal = true; readonly modalWidth = 360; readonly menu = "cell"; readonly propertyFields: FieldName[]; getModalContentNode(editor: IDomEditor): NodeEntry; } export default CellProperty;