/** * DeukPack Excel Schema-driven Object Reader * * Provides functions to read plain JS objects from Excel sheets based on a JSON schema, * separate from the DpProtocol streaming implementation. */ import { IExcelSheet } from '../protocols/ExcelUtils'; export interface ColMapEntry { col: number; datatype: string; } /** * Schema-driven Excel reader for plain JS objects. */ export declare function fromExcelRow(schema: any, sheet: IExcelSheet, row: number, schemas: Record, enumMap?: Record): Record; /** * Read all records from an Excel sheet. */ export declare function fromExcelSheet(schema: any, sheet: IExcelSheet, schemas: Record, enumMap?: Record, firstDataRow?: number): Map>; //# sourceMappingURL=ExcelObjectReader.d.ts.map