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