import { IOptions, IReporter } from '..';
import { IClone } from '../interfaces/clone.interface';
export declare class XmlReporter implements IReporter {
    private options;
    constructor(options: IOptions);
    attach(): void;
    report(clones: IClone[]): void;
}
