import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { IAnimatableProps } from '../../../Behaviors/Animatable'; import type { ISelectorItemElementProps } from '../Abstracts/Selector/ISelectorItemElementProps'; /** * Represents the `IStepperItemElementProps` interface. * * @public */ export interface IStepperItemElementProps extends ISelectorItemElementProps, IAnimatableProps, IDisableableProps { header: string; description: string; hint: string; icon: string; state: 'pending' | 'completed' | 'error'; } //# sourceMappingURL=IStepperItemElementProps.d.ts.map