import { Type } from '@angular/core';
import { BannerItem } from '../../banner';
export interface WizardBuilderInterface {
    addStepInStage(stepName: string, stepComponentType: Type<any>, stageName: string): void;
    addStepInStageByIndex(stepName: string, stepComponentType: Type<any>, stageName: string, index: number): void;
    addStageByIndex(stageName: string, index: number): void;
    removeStepInStageByIndex(stageName: string, index: number): boolean;
    addWizardBannerItems(item: BannerItem): any;
    clearStage(stageName: string): boolean;
}
