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