import { TestResults, TestResultCsv } from '../../../types'; export declare const saveLog: (outDirectory: string, test: string, log: string, lineBreak?: boolean) => Promise; export declare const saveResultJson: (jsonPath: string, result: TestResults) => Promise; export declare const saveResultCsv: (csvPath: string, result: TestResults, columns?: string[]) => Promise; export declare const saveResultXml: (xmlPath: string, result: TestResults) => Promise; export declare const saveCoverageLcov: (coverageReportPath: string, tests: string[]) => Promise;