import { IRowWithCell } from '../SpreadSheetProvider/index.data'; import { IColumn, IRow, ID, ICellNN } from '../index.data'; /** * 从输入的sheet, 提取符合store标准的rows, 用于initStore * @param sheet * @startI 新生的行, i 的开始点 * */ export declare function normalizeRows(sheet: { rows: IRowWithCell[]; columns: IColumn[]; }, startI?: number): IRow[]; export declare function normalizeCellIdMap(sheet: { rows: IRowWithCell[]; columns: IColumn[]; }, startI?: number): Record;