import { Alignment, ContentCellBorders, ContentCellFill, ContentCellValue, ContentSheetCell, ContentSheetCellComment } from "document-schema.js"; //#region src/edit/xls/cell.d.ts declare function displayTextOfValue(value: ContentCellValue): string; declare class XlsCell { private readonly container; private readonly node; private removed; constructor(container: ContentSheetCell[], node: ContentSheetCell); private live; get row(): number; get column(): number; get value(): ContentCellValue; set value(value: ContentCellValue); get displayText(): string; set displayText(text: string); get numberFormatCode(): string | undefined; set numberFormatCode(code: string | undefined); get formula(): string | undefined; get colSpan(): number | undefined; set colSpan(value: number | undefined); get rowSpan(): number | undefined; set rowSpan(value: number | undefined); get background(): ContentCellFill | undefined; set background(fill: ContentCellFill | undefined); get borders(): ContentCellBorders | undefined; set borders(value: ContentCellBorders | undefined); get alignment(): Alignment | undefined; set alignment(value: Alignment | undefined); get comment(): ContentSheetCellComment | undefined; set comment(value: ContentSheetCellComment | undefined); remove(): void; } //#endregion export { displayTextOfValue as n, XlsCell as t };