/// import * as fs from 'fs'; import { CompressionMethod } from './constants'; export declare function createTempDirectory(): Promise; export declare function getArchiveFileSizeInBytes(filePath: string): number; export declare function resolvePaths(patterns: string[]): Promise; export declare function unlinkFile(filePath: fs.PathLike): Promise; export declare function getCompressionMethod(): Promise; export declare function getCacheFileName(compressionMethod: CompressionMethod): string; export declare function isGnuTarInstalled(): Promise; export declare function assertDefined(name: string, value?: T): T; export declare function isGhes(): boolean;