/// import { Reporter, ReportOptions } from "../reporter"; export declare class CompoundReporter implements Reporter { private readonly streamReporters; private readonly vinylReporters; constructor(reporters: ReadonlyArray); reportStream(options: ReportOptions): NodeJS.ReadableStream; reportVinyl(options: ReportOptions): NodeJS.ReadableStream; }