import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { IOrientableProps } from '../../../Behaviors/Orientable'; import type { IValueableProps } from '../../../Behaviors/Valueable'; /** * Represents the `IColor-SliderElementProps` interface. * * @public */ export interface IColorSliderElementProps extends IDisableableProps, IOrientableProps, IValueableProps { color: string; } //# sourceMappingURL=IColorSliderElementProps.d.ts.map