import { ProgressBar } from "../interfaces/progress-bar";
export declare class ProgressBarImpl implements ProgressBar {
    showProgressForTask(id: string, status: string, current: number, total: number): void;
}
