import { Decompressor } from './Decompressor'; /** * Decompressor for multi-file archive formats supported by libarchive.js (WASM-based). * Handles .rar, .rpm, .7z, .tar.bz2, .tar.lzma, .tar.xz, .tbz2, and .txz. */ export declare class DecompressLibarchive extends Decompressor { constructor(); run(archivePath: string, destPath: string): Promise; private writeExtractedFiles; }