import { IClone, IOptions, IReporter, IStatistic } from '..';
export declare class HtmlReporter implements IReporter {
    private options;
    constructor(options: IOptions);
    attach(): void;
    report(clones: IClone[], statistic: IStatistic): void;
}
