import { WizardCompletionStep } from '../util/wizard-completion-step.interface'; /** * The `awWizardCompletionStep` directive can be used to define a completion/success step at the end of your wizard * After a [[WizardCompletionStep]] has been entered, it has the characteristic that the user is blocked from * leaving it again to a previous step. * In addition entering a [[WizardCompletionStep]] automatically sets the `wizard`, and all steps inside the `wizard`, * as completed. * * ### Syntax * * ```html *
* ... *
* ``` * * ### Example * * ```html *
* ... *
* ``` * * With a navigation symbol from the `font-awesome` font: * * ```html *
* ... *
* ``` * * @author Marc Arndt */ export declare class WizardCompletionStepDirective extends WizardCompletionStep { }