export interface CalcCell { cellId: string | undefined; rowSpan: number; colSpan: number; width: number; align: string | undefined; originalWidth: number | undefined; from: [number, number] | undefined; color: string | undefined; } /** * 处理表格数据,将表格数据生成为一个内存表达 */ export declare function buildTableMatrix(block: any): CalcCell[][];