import { CdkStepper, StepState } from "@angular/cdk/stepper"; import { AfterContentInit, AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, OnDestroy, QueryList, TemplateRef } from "@angular/core"; import { RealsoftStepHeader } from "./step-header"; import { RealsoftStep } from "./step"; import { RealsoftStepperIcon, RealsoftStepperIconContext } from "./step-icon"; import { Directionality } from "@angular/cdk/bidi"; import * as i0 from "@angular/core"; export declare class RealsoftStepper extends CdkStepper implements AfterViewInit, AfterContentInit, OnDestroy { private _animationsModule; private isAnimating; private _animationDuration; _animatedContent: QueryList; _stepHeader: QueryList; _steps: QueryList; labelPosition: 'bottom' | 'end'; headerPosition: 'top' | 'bottom'; _iconOverrides: Record>; readonly steps: QueryList; icons: QueryList; readonly animationDone: EventEmitter; get animationDuration(): string; set animationDuration(value: string); constructor(_dir: Directionality, _changeDetectorRef: ChangeDetectorRef, _elementRef: ElementRef); ngAfterViewInit(): void; ngAfterContentInit(): void; _allowNavigation(index: number, step: RealsoftStep): boolean; getAnimationDuration(): string; private _onAnimationDone; ngOnDestroy(): void; _getIndicatorType(index: number, state: StepState): StepState; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }