import { ProgressBarOptions } from './progress-bar-options.interface.js'; export declare class ProgressBar { private readonly opts; private current; private renderInterval; constructor(opts: ProgressBarOptions); increment(): void; start(): void; stop(): void; private render; }