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