import { Type } from '@angular/core';
export declare class WizardFooterModel {
label: string;
type: Type<any>;
model: any;
height: number;
styleClasses: string[];
constructor(label: string, footerType: Type<any>, model: any, height: number, styleClasses: string[]);
}