/** * Reads data files using worker threads to parallelize the loading process. * For small datasets (<100 files), uses direct file reading to avoid worker thread overhead. * Each worker processes a chunk of the data files list. * * @param DataFilesList - An array of file paths to be read. * @param path - The base path where the files are located. * @param storeFileName - Whether to include the fileName in the result objects. * @returns {Promise} - A promise that resolves to an array of loaded data. */ export default function ReaderWithWorker(DataFilesList: string[], path: string, storeFileName?: boolean): Promise;