import { Options } from 'cli-progress'; export declare class MultiProgressBarReporter { private running; private current; start(name: string, optProgressBar: Options): void; update(event: { status: 'Pulling fs layer' | 'Downloading' | 'Download complete'; progressDetail: { current: number; total: number; }; id: string; }): void; stop(name: string): string; completed(): Promise; }