import { OnInit, EventEmitter, ElementRef } from '@angular/core'; import { CfCoreComponent } from '../core/core.component'; import { ButtonModel } from '../../models/button/button.model'; import { WizardNavButtonsStylingModel } from '../../models/wizard/wizard-nav-buttons-styling.model'; import { TemplateService } from '../../services/template-service/template.service'; /** *

Wizard Back component based on cf-button

*

Example of using:

*
 * <cf-wizard-back [properties]="myWizard" [styling]="myWizardStyles">
 * </cf-wizard-back>
 * 
*/ export declare class CfWizardBackComponent extends CfCoreComponent implements OnInit { elementRef: ElementRef; /** * ButtonModel object */ properties: ButtonModel; /** * Styling object consists of two properties: contaiter and buttonStyling *

container: StylingModel

* Styling properties for cf-wizard-back container *

buttonStyling: ButtonStylingModel

* Styling properties for cf-wizard-back button */ styling: WizardNavButtonsStylingModel; /** *

The label for the button

*/ label: string; /** *

The name of the icon

*

Refer to icon component

*/ iconName: string; /** *

The name of the icon

*

Refer to icon component

*/ iconSize: string; /** *

The icon position on the button

*

Options: 'left' or 'right'

*

Default: 'left'

*/ iconPosition: string; /** Output *

The event will be emitted when the button is clicked

*/ onClick: EventEmitter<{}>; /** @hidden*/ constructor(elementRef: ElementRef, /**@hidden */ templateService: TemplateService); /** @hidden*/ ngOnInit(): void; /**@hidden */ onBackClick(): void; }