import { ProgressLog } from "../../spi/log/ProgressLog"; /** * Write to multiple progress logs, exposing them as one. */ export declare class WriteToAllProgressLog implements ProgressLog { name: string; private readonly logs; constructor(name: string, log1: ProgressLog, log2: ProgressLog, ...others: ProgressLog[]); isAvailable(): Promise; write(msg: string, ...args: string[]): void; flush(): Promise; close(): Promise; get log(): string; get url(): string; } //# sourceMappingURL=WriteToAllProgressLog.d.ts.map