import { TemplateRef, Type } from '@angular/core'; import { NgFlowchartStepComponent } from './ng-flowchart-step/ng-flowchart-step.component'; export declare class NgFlowchartStepRegistry { private registry; constructor(); /** * Register a step implementation. Only needed if you are uploading a flow from json * @param type The unique type of the step * @param step The step templateRef or component type to create for this key */ registerStep(type: string, step: Type | TemplateRef): void; getStepImpl(type: string): Type | TemplateRef | null; }