import { EventEmitter, OnInit } from '@angular/core'; import { MovingDirection } from '../util/moving-direction.enum'; import { WizardCompletionStep } from '../util/wizard-completion-step.interface'; /** * The `awEnableBackLinks` directive can be used to allow the user to leave a [[WizardCompletionStep]] after is has been entered. * * ### Syntax * * ```html * * ... * * ``` * * ### Example * * ```html * * ... * * ``` * * @author Marc Arndt */ export declare class EnableBackLinksDirective implements OnInit { private completionStep; /** * This EventEmitter is called when the step is exited. * The bound method can be used to do cleanup work. */ stepExit: EventEmitter; /** * Constructor * * @param completionStep The wizard completion step, which should be exitable */ constructor(completionStep: WizardCompletionStep); /** * Initialization work */ ngOnInit(): void; }