import EventEmitter = require('eventemitter3');
import { IOptions, IReporter } from '..';
export declare class VerboseReporter implements IReporter {
    protected options: IOptions;
    private startTime;
    private sourceCount;
    constructor(options: IOptions);
    attach(eventEmitter: EventEmitter): void;
    report(): void;
    private matchSource;
    private skipSource;
    private cloneFound;
    private generateStatistic;
}
