export declare const createZipTargetFiles: ({ outfile, targetFiles, }: {
    targetFiles: {
        path: string;
        name: string;
    }[];
    outfile: string;
}) => Promise<string>;
export declare const createZip: ({ outfile, targetDir, excludeExts, }: {
    targetDir: string;
    outfile: string;
    excludeExts?: string[];
}) => Promise<string>;
