import type { FileItem } from '../../FileItem.ts'; import type { Options } from '../../Options.ts'; /** * Some files in the fileItems may actually be gzip. This method will ungzip those files. * The method will actually not really ungzip the files but decompress them if you need. * During this process the extension .gz will be removed * @param fileItem - The file item to check and potentially ungzip. * @param options - Options to filter the files and control the ungzip behavior. * @returns A file item with ungzipped data. */ export declare function fileItemUngzip(fileItem: FileItem, options?: Options): Promise; //# sourceMappingURL=fileItemUngzip.d.ts.map