import type { VitestRunner } from "@vitest/runner";
import type { SerializedConfig } from "vitest";
type VitestRunnerCtor = new (config: SerializedConfig) => VitestRunner;
declare const ConcurrencyAwareAllureVitestRunner_base: VitestRunnerCtor;
export default class ConcurrencyAwareAllureVitestRunner extends ConcurrencyAwareAllureVitestRunner_base implements VitestRunner {
    #private;
    constructor(config: SerializedConfig);
}
export {};
