interface TestReportConverterOptions {
    testFile: string
    testType: string
    reportDir? : string
    reportFilename? : string
    junit?: boolean
    junitReportFilename? : string
    html?: boolean
    htmlReportFilename? : string
    skippedAsPending?: boolean
    switchClassnameAndName?: boolean
    splitByClassname?: boolean
    saveIntermediateFiles?: boolean

}

declare function convert(options: TestReportConverterOptions): Promise<void>;

export default convert;

