import type { WorkBook, WorkSheet } from 'xlsx'; import type { XilnexImportResult } from './XilnexImportForm.vue'; interface XilnexItemRow { item_name: string; 'transfer_quantity(uom)': string; uom: string; scanned_code: string; } export declare function worksheetToItemRow(sheet: WorkSheet): Array<{ index: number; data: XilnexItemRow; }>; export declare function getItemToCreate(workbook: WorkBook): XilnexImportResult; export {};