import type { FileItem } from '../../FileItem.ts'; import type { Options } from '../../Options.ts'; /** * Some files in the fileItems may actually be zip. This method will unzip those files. * The method will actually not really unzip the files but only add them in the fileItems. * Unzipping will only take place when you want to actually retrieve the data. * @param fileItem - The file item to check and potentially unzip. if not zip file, return an array with the fileItem. * @param options - Options to filter the files and control the unzipping behavior. * @returns An array of file items, which may include unzipped files if the input was a zip file. */ export declare function fileItemUnzip(fileItem: FileItem, options?: Options): Promise; //# sourceMappingURL=fileItemUnzip.d.ts.map