import { Reporter } from "../../Core/Reporter";
export default class MultiReporter implements Reporter {
    private reporters;
    name: string;
    constructor(reporters: any);
    canReportOn(fileName: any): boolean;
    report(approvedFilePath: any, receivedFilePath: any, options: any): void;
}
