/** * Archive extraction helpers. * * Archive paths can originate from user input. Resolve them to absolute paths * and invoke extraction tools directly with an argv array so option-like * prefixes and shell metacharacters remain literal path characters. */ export declare function extractZip(archivePath: string, extractDir: string, overwrite?: boolean): void; export declare function extractTarGz(archivePath: string, extractDir: string): void; //# sourceMappingURL=archive-extractor.d.ts.map