import type { IRangeableProps } from '../../../Behaviors/Rangeable'; import type { IValueableProps } from '../../../Behaviors/Valueable'; /** * Represents the `IMultiRangeBaseElementProps` interface. * * @public */ export interface IMultiRangeBaseElementProps extends IRangeableProps, IValueableProps> { value: number | Array; } //# sourceMappingURL=IMultiRangeBaseElementProps.d.ts.map