import { CoreModel } from '../core/core.model'; export declare class WizardStepModel extends CoreModel { /** * Step label */ label?: string; /** * Property for step valid state */ isValid?: boolean; /** * It is the constructor for the WizardStepModel component. It takes the values to create the WizardStepModel object. */ constructor(values?: Object); }