import { IClone, IReporter } from '..';
import { IStatistic } from '../interfaces/statistic.interface';
export declare class SilentReporter implements IReporter {
    attach(): void;
    report(clones: IClone[], statistic: IStatistic): void;
}
