/**
 * Unzip archive
 */
declare function unzip(source: string, path: string): Promise<void>;

export { unzip };
