import { Archiver } from "archiver";
export declare class Zipper {
    archiver: Archiver;
    constructor();
    zip(inPath: string, outPath: string): Promise<void>;
}
