/// import * as plugins from './smartarchive.plugins.js'; export declare class SmartArchive { archiveDirectory: string; constructor(); /** * extracts an archive from a given url */ extractArchiveFromUrlToFs(urlArg: string, targetDir: string): Promise; /** * extracts an archive from a given filePath on disk * @param filePathArg * @param targetDir */ extractArchiveFromFilePathToFs(filePathArg: string, targetDir: string): Promise; /** * extracts to Observable */ extractArchiveFromBufferToObservable(bufferArg: Buffer): Promise>; /** * extracts to Observable */ extractArchiveFromUrlToObservable(urlArg: string): Promise>; }