export type CellValue = | string | ParsedNumber | boolean | typeof Date export type Row = (CellValue | null)[] export type SheetData = Row[]