import { TableCell } from "./table-cell"; export type HeightRule = "auto" | "atLeast" | "exact"; export declare class TableRow { cells: TableCell[]; hasNumberings: boolean; height: number | null; hRule: HeightRule | null; del: { author: string; date: string; } | null; ins: { author: string; date: string; } | null; addCell(cell: TableCell): this; rowHeight(h: number): this; heightRule(r: HeightRule): this; delete(author: string, date: string): this; insert(author: string, date: string): this; }