export declare class Status {
    private static instance;
    static get Instance(): Status;
    private spinner;
    private taskName;
    private stage;
    private crtCnt;
    private total;
    private startAt;
    private errors;
    startTask(name: string, total: number): void;
    reset(stage?: string): void;
    update(info: string): void;
    end(): void;
    private get title();
    emptyErrors(): void;
    collect(error: string): void;
    dumpErrors(): void;
}
