import { OnInit, QueryList } from '@angular/core'; import { StepComponent } from './step/step.component'; export declare class StepsComponent implements OnInit { _direction: 'horizontal' | 'vertical'; steps: StepComponent[]; margin: number; _current: number; atSize: string; current: any; direction: any; stepList: QueryList; constructor(); ngOnInit(): void; addStep(step: StepComponent): void; readonly marginPx: string; stepWidth(i: any): string; isLast(i: any): boolean; ngAfterViewInit(): void; }