import { SurfaceOptionReteral, BorderOptionReteral, CellOptionReteral, CellReteral } from "./gobject_reterals"; import { LogicText } from "./logic_text"; /** * 表のセルを表す論理クラス */ export declare class LogicCell { text: LogicText; option: CellOptionReteral; get backgroundOption(): SurfaceOptionReteral; get topBorderOption(): BorderOptionReteral; get leftBorderOption(): BorderOptionReteral; get rightBorderOption(): BorderOptionReteral; get bottomBorderOption(): BorderOptionReteral; get connectedColumnCount(): number; get connectedRowCount(): number; tTexts: HTMLElement[] | null; item: any; constructor(); buildFromObject(obj: any): void; copy(cell: LogicCell): void; toReteral(): CellReteral; }