import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
import { AbstractStep } from 'ngx-obelisco-example/core/abstracts';
import { ProgressBarTypes } from 'ngx-obelisco-example/core/models';
import { StepService } from 'ngx-obelisco-example/core/services';
import * as i0 from "@angular/core";
export declare class OProgressBarComponent extends AbstractStep implements OnInit, OnDestroy {
    private readonly progressBarService;
    percentage: number;
    aux: number;
    description: string;
    type: ProgressBarTypes;
    currentStep: number;
    totalSteps: number;
    customClasses: string;
    stopSteps: EventEmitter<boolean>;
    private onDestroy$;
    constructor(progressBarService: StepService);
    ngOnInit(): void;
    previousStep(): void;
    nextStep(): void;
    ngOnDestroy(): void;
    static ɵfac: i0.ɵɵFactoryDeclaration<OProgressBarComponent, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<OProgressBarComponent, "o-progress-bar", never, { "description": "description"; "type": "type"; "currentStep": "currentStep"; "totalSteps": "totalSteps"; "customClasses": "customClasses"; }, { "stopSteps": "stopSteps"; }, never, never, false>;
}
