/**
 * Un-Gzips a file
 * @function gunzip
 * @memberof fsn/nextra
 * @param fileName The filename of the output file
 * @param inputFile The filepath of the archive
 * @param atomic If the unzip file should be created atomically
 */
export declare function gunzip(fileName: string, inputFile: string, atomic?: boolean): Promise<void>;
