import Reporter, { ReporterProperties } from './Reporter';
import { Executor } from '../executors/Executor';
export default class JUnit extends Reporter {
    readonly filename: string | undefined;
    constructor(executor: Executor, options?: Partial<JUnitProperties>);
    runEnd(): void;
}
export interface JUnitProperties extends ReporterProperties {
    filename?: string;
}
