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'; /** * Represents the `IWizardElementProps` interface. * * @public */ export interface IWizardElementProps extends ISelectorElementProps, IFitableProps, IDisableableProps, ISlottableProps { } //# sourceMappingURL=IWizardElementProps.d.ts.map