import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { IFitableProps } from '../../../Behaviors/Fitable'; import type { ISlottableProps } from '../../../Behaviors/Slottable'; import type { ISelectorElementProps } from '../Abstracts/Selector/ISelectorElementProps'; import type { IOrientableProps } from '../../../Behaviors/Orientable'; /** * Represents the `IStepperElementProps` interface. * * @public */ export interface IStepperElementProps extends ISelectorElementProps, IFitableProps, IDisableableProps, ISlottableProps, IOrientableProps { } //# sourceMappingURL=IStepperElementProps.d.ts.map