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