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