/**
* @license
* Copyright LOGO YAZILIM SANAYİ VE TİCARET A.Ş. All Rights Reserved.
*
* Save to the extent permitted by law, you may not use, copy, modify,
* distribute or create derivative works of this material or any part
* of it without the prior written consent of LOGO YAZILIM SANAYİ VE TİCARET A.Ş. Limited.
* Any reproduction of this material must contain this notice.
*/
import { AfterViewInit, EventEmitter, OnInit } from '@angular/core';
import { Params } from '@angular/router';
/**
* Item component determines Wizard's step title and its content. Steps's title attribute will be the display text of the step. And its child DOM elements will be the content of the step.
*
* app.component.ts
*
* ```html
*
* Content of the Step
*
* ```
*/
export declare class ItemComponent implements AfterViewInit, OnInit {
/**
* Step will be active if set true, default is false
*/
isActive: boolean;
/**
* Title of the step which will be show at badge
*/
title: string;
/**
* Redirection address for the step
*/
route: string;
/**
* Params of the step if needed.
*/
params: Params;
/**
* Fragment uses to redirection to the anchor.
* For example, the fragment must be set to `section` for direction to `http://domain.com/#section`
*/
fragment: string;
/**
* State of the step to determine completed status or not.
*/
isCompleted: boolean;
/**
* Disabled status of the step.
*/
isDisabled: boolean;
/**
* Viewable status of the step.
*/
isHidden: boolean;
/**
* Icon css class of the step. This icon will be shown instead of step number at wizard header
*/
icon: string;
/**
* Logo wizard supports other font based icon libraries. If standard CSS Classes needed, you can use this option
*/
iconExtensions: string;
/**
* Init event emitter that runs when the step is initialized. This will lets developer to trigger step loaded or not.
*/
init: EventEmitter;
/**
* Before Init event emitter that runs when the step is initialized. This will lets developer to trigger step loaded or not.
*/
onInit: EventEmitter;
ngAfterViewInit(): void;
ngOnInit(): void;
}