export declare class Progress {
    private options;
    readonly startTime: number;
    private readonly spinner?;
    constructor(options: {
        silent: boolean;
    });
    start(text: string): this;
    line(text: string): this;
    text(text: string): void;
    fail(message: string): void;
    suffixText(text: string): void;
    succeed(text?: string): void;
    stop(): void;
}
//# sourceMappingURL=progress.d.ts.map