import LinkedList from '../../../block/base/linkedList/linkedList'; import Parent from '../../../block/base/parent'; import TableCellContent from '../../../block/content/tableCell'; import Muya from '../../../index'; import Table from '.'; import { ITableCellMeta, ITableCellState } from '../../../state/types'; import Row from './row'; declare class TableBodyCell extends Parent { children: LinkedList; meta: ITableCellMeta; static blockName: string; static create(muya: Muya, state: ITableCellState): TableBodyCell; get path(): (string | number)[]; get table(): Table; get row(): Row; get rowOffset(): number; get columnOffset(): number; get align(): string; set align(value: string); constructor(muya: Muya, { meta }: ITableCellState); getState(): ITableCellState; } export default TableBodyCell;