export declare abstract class Decompressor { protected supportedFormats: Array; abstract run(archivePath: string, destPath: string): Promise; isSupported(filename: string): boolean; /** * Returns the extension supported by this decompressor * Includes the '.' appended */ getSupportedFormats(): Array; }