import { ProgressLog } from "../../spi/log/ProgressLog"; /** * ProgressLog implementation that captures the log into a string and makes it * available from the log field */ export declare class StringCapturingProgressLog implements ProgressLog { readonly name: string; log: string; stripAnsi: boolean; close(): Promise; flush(): Promise; write(msg: string, ...args: string[]): void; isAvailable(): Promise; } //# sourceMappingURL=StringCapturingProgressLog.d.ts.map