import { TestReport } from "./testResult"; export declare enum Format { HTML = 0 } /** * Create Test Result exported file */ export declare function exportTo(format: Format, testReport: TestReport, filename: string): Promise; export declare function exportToHtml(testReport: TestReport, filename: string): Promise;