import { AfterContentInit, AfterViewInit, EventEmitter, QueryList, ViewContainerRef } from '@angular/core'; import { YapStepComponent } from './step/step.component'; import * as i0 from "@angular/core"; export declare enum Status { PENDING = "pending", IN_PROGRESS = "in progress", COMPLETED = "completed" } export declare class YapStepperComponent implements AfterContentInit, AfterViewInit { activeIndex: number; steps: QueryList; stepViewRef: Array; isConsultMode: boolean; lastStepCompleted: EventEmitter; get stepperSteps(): YapStepComponent[]; ngAfterContentInit(): void; ngAfterViewInit(): void; updateActiveStep(index: number): void; completeLastStep(): void; undoLastComplete(): void; switchStatusNext(index: number): void; switchStatusPrev(index: number): void; next(): void; prev(): void; goTo(index: number): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }