import { Format } from "./testResultFormatter"; import { TestReport, FeatureResults } from "./testResult"; /** * Generate a test report for test plan * If the last version tested is greater than version to test, * the item is marked as completed * */ export declare function generateTestReport(featureRootDirectory: string, testPlanFilename: string, reportFilename?: string, format?: Format): Promise; /** * Gather all the test results from the feature files * @param directory */ export declare function loadTestResults(directory: string): Promise;