/** * Saves log to a file. * @param logData - log content. * @param logFile - file path to log file. * @param jobPath - file path to the job submitted for execution. */ export declare const saveLog: (logData: any, logFile: string | undefined, jobPath: string) => Promise; /** * Saves job output to the file. * @param outputData - job output. * @param outputFile - file path to output file. */ export declare const saveOutput: (outputData: any, outputFile: string) => Promise;