/**
 * A brutally simple and sexy classic UNIX-style progress bar.
 * [######....] — no BS, no animations, just raw deployment status.
 * Designed for CLI tools that mean business.
 *
 */
export declare class ProgressBar {
    private totalSteps;
    private current;
    constructor(totalSteps: number);
    /**
     * Prints the progress for the current step.
     * @param stepName - Description of the current step.
     */
    step(stepName: string): void;
    /**
     * Called when all steps are finished.
     */
    complete(): void;
}
