import { CellProperties } from './CellProperties'; export interface Cell { colSpan: number; properties?: CellProperties; name?: string; rowSpan: number; showHelp: boolean; title?: string; event?: string; }