/** * Defines which region of the table the cell refers to */ export declare class GridArea { readonly rowStart: number; readonly columnStart: number; readonly rowEnd: number; readonly columnEnd: number; constructor(rowStart: number, columnStart: number, rowEnd?: number, columnEnd?: number); toString(): string; }