/**
 * Creates a zip file.
 * Having single JSON file in it.
 * @param {string} saveTo - full path to save the file.
 * @param {string} contents - contents of JSON file.
 */
export declare const compressAndSave: (saveTo: string, contents: string) => Promise<void>;
