import { IOptions, IClone, IStatistic } from '@jscpd/core';
import { IReporter } from '@jscpd/finder';

declare class BadgeReporter implements IReporter {
    private options;
    constructor(options: IOptions);
    report(clones: IClone[], statistic: IStatistic): void;
    getStatus(statistic: IStatistic): string;
    getColor(statistic: IStatistic): string;
}

export { BadgeReporter as default };
