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 Next component based on cf-button

*

Example of using:

*
 * <cf-wizard-next [properties]="myWizard" [styling]="myWizardStyles">
 * </cf-wizard-next>
 * 
*/ export declare class CfWizardNextComponent 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-next container *

buttonStyling: ButtonStylingModel

* Styling properties for cf-wizard-next 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. Can be: 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 */ onNextClick(): void; }