import { WizardStep } from '../util/wizard-step.interface';
/**
* The `aw-wizard-step` component is 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 WizardStepComponent extends WizardStep {
}