import WDIOReporter, { AfterCommandArgs, RunnerStats, SuiteStats, TestStats } from "@wdio/reporter";
import { AzureReporterOptions } from "./types.js";
export default class AzureDevopsReporter extends WDIOReporter {
    private reporterOptions;
    private azureConfigurationId;
    private utils;
    private azureTestResult;
    private screenshots;
    private currentTestCaseAzureID;
    private currentIterationID;
    private currentActionPathIndex;
    constructor(options: AzureReporterOptions);
    onRunnerStart(runner: RunnerStats): void;
    onRunnerEnd(): void;
    onSuiteStart(suite: SuiteStats): void;
    onTestStart(test: TestStats): void;
    onSuiteEnd(suite: SuiteStats): void;
    onAfterCommand(command: AfterCommandArgs): void;
}
