import { EventEmitter } from '@angular/core'; import { FlowStep } from './flow-step.model'; export declare class FlowStepComponent { type: 'dot' | 'arrow'; steps: FlowStep[]; active: number; activeChange: EventEmitter; cssClass: string; stepClick(step: any, $index: any): void; }