import { WizardStep } from '../util/wizard-step.interface'; /** * The `awWizardStep` directive can be used to define a normal step inside a wizard. * * ### Syntax * * With `stepTitle` and `navigationSymbol` inputs: * * ```html *
* ... *
* ``` * * With `awWizardStepTitle` and `awWizardStepSymbol` directives: * * ```html *
* * step title * * * symbol * * ... *
* ``` * * ### Example * * With `stepTitle` and `navigationSymbol` inputs: * * ```html *
* ... *
* ``` * * With `awWizardStepTitle` and `awWizardStepSymbol` directives: * * ```html *
* * Address information * * * * *
* ``` * * @author Marc Arndt */ export declare class WizardStepDirective extends WizardStep { }