import { IAnimatable } from '../../../Behaviors/Animatable'; import { SelectorItemElement } from '../Abstracts/Selector/SelectorItemElement'; import type { IWizardStepElementProps } from './IWizardStepElementProps'; import { WizardElement } from './WizardElement'; declare const WizardStepElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Animatable").IAnimatableProps & IAnimatable) & (abstract new (...args: Array) => import("../../../Behaviors/Disableable").IDisableableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Insetable").IInsetableProps) & (abstract new () => SelectorItemElement>) & import("../../../Behaviors/Themeable").IThemeableCtor; /** * Wizard step - A component that allows users to navigate through steps to complete a task. * * @element mosaik-wizard-step * @category Selector * * @slot - The default slot. * @slot footer - The footer slot. * * @example * Basic wizard step: * ```html * *
* * *
*
* ``` * * @example * Wizard step with sub-header and footer: * ```html * *

Your information will be saved.

*
* * *
*
* ``` * * @public */ export declare class WizardStepElement extends WizardStepElement_base implements IWizardStepElementProps, IAnimatable { private readonly _inheritance; private _header; private _subHeader; private _isActive; /** * @public */ constructor(); /** * Returns the `is` property. * The `is` property represents natural name of this element. * * @public * @static * @override * @readonly */ static get is(): string; /** * @inheritdoc * When used inside a Wizard, inherits the wizard's disabled state unless explicitly set. * * @public * @override */ get disabled(): boolean; set disabled(value: boolean); /** * Gets or sets the `header` property. * * @public * @attr */ get header(): string; set header(value: string); /** * Gets or sets the `subHeader` property. * * @public * @attr */ get subHeader(): string; set subHeader(value: string); /** * Gets or sets the `isActive` property. * * @public * @attr */ get isActive(): boolean; set isActive(value: boolean); /** * Get the item parent. * * @protected * @readonly */ get parent(): WizardElement; /** * @public * @override */ connectedCallback(): void; /** * @public * @override */ disconnectedCallback(): void; /** * @protected */ protected onIsActivePropertyChanged(_prev: boolean, next: boolean): void; } /** * @public */ export declare namespace WizardStepElement { type Props = IWizardStepElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-wizard-step': WizardStepElement; } } export {}; //# sourceMappingURL=WizardStepElement.d.ts.map