import { IReporter, Benchmark } from '.';
/**
 * A reporter that writes nothing but simply
 * collects benchmarks that can be read later.
 */
export declare class GatherReporter implements IReporter {
    readonly results: Benchmark[];
    onStartCycle(): void;
    onFinishCycle(benchmark: Benchmark): void;
    onComplete(): void;
}
