import { CoreModel } from '../core/core.model'; import { ButtonModel } from '../button/button.model'; export declare class WizardModel extends CoreModel { /** * If to show step number as icon in wizard header steps buttons */ activeStepIndex?: number; /** * If to show step number as icon in wizard header steps buttons */ showStepNumberAsIcon?: boolean; /** * If to show step number as prefix in wizard header steps buttons */ showStepNumberAsPrefix?: boolean; /** * If to show step number before the label */ indexBefore?: boolean; /** * The ButtonModel object for wizard back button */ backButton?: ButtonModel; /** * The ButtonModel object for wizard next button */ nextButton?: ButtonModel; /** * The ButtonModel object for wizard finish button */ finishButton?: ButtonModel; /** * Header position: above (default), right, below, left */ headerPosition?: string; /** * Footer position: above, right, below (default), left */ footerPosition?: string; /** * It is the constructor for the WizardModel component. It takes the values to create the WizardModel object. */ constructor(values?: Object); }