import CellStyle from "./CellStyle"; export default class CellModel { value: string; rowSpan: number; columnSpan: number; style: CellStyle; constructor(value?: string, rowSpan?: number, columnSpan?: number, style?: CellStyle); }