import { ContentCellValue, ContentRun } from "document-schema.js"; import { Package, XmlElement } from "odf.js"; //#region src/edit/ods/cell.d.ts declare class OdsCell { private readonly node; private readonly pkg; constructor(node: XmlElement, pkg: Package); get value(): ContentCellValue; set value(value: ContentCellValue); get formula(): string | undefined; set formula(value: string | undefined); get displayText(): string; set displayText(value: string); setStyledRuns(runs: readonly ContentRun[]): void; } //#endregion export { OdsCell as t };