import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { IFocusableProps } from '../../../Behaviors/Focusable'; import type { IValueableProps } from '../../../Behaviors/Valueable'; import type { IVariantableProps } from '../../../Behaviors/Variantable'; import type { IRangeBaseElementProps } from '../Abstracts/IRangeBaseElementProps'; /** * Represents the `ISlider2ThumbElementProps` interface. * * @public */ export interface ISlider2ThumbElementProps extends IRangeBaseElementProps, IDisableableProps, IValueableProps, IFocusableProps, IVariantableProps { step: number; } //# sourceMappingURL=ISlider2ThumbElementProps.d.ts.map