import { LogJson } from '../types';
/**
 * Saves log to the log file.
 * @param logData - log content.
 * @param logFile - file path to log file.
 * @param jobPath - file path to job, job name will be used as a fallback name for log file.
 * @param silent - boolean indicating if additional info should be logged.
 */
export declare const saveLog: (logData: LogJson | string, logFile: string | undefined, jobPath: string, silent?: boolean) => Promise<void>;
