import type { IAnimatableProps } from '../../../Behaviors/Animatable'; import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { IInsetableProps } from '../../../Behaviors/Insetable'; import type { ISelectorItemElementProps } from '../Abstracts/Selector/ISelectorItemElementProps'; /** * Represents the `IWizardStepElementProps` interface. * * @public */ export interface IWizardStepElementProps extends ISelectorItemElementProps, IInsetableProps, IAnimatableProps, IDisableableProps { header: string; subHeader: string; isActive: boolean; } //# sourceMappingURL=IWizardStepElementProps.d.ts.map