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