import { Ora } from 'ora'; /** * @param source * @param type */ export declare const zipExtensionFolder: (source: string, type: 'workflow' | 'plugin') => Promise; /** * @param source * @param out * @param spinner */ declare const zipCurrentDir: (source: string, out: string, spinner: Ora) => Promise; export { zipCurrentDir };