import type { CustomElement } from '../Components/Abstracts/CustomElement'; import type { ControlBehaviorBase, ControlBehaviorReturn } from './Abstracts/Behavior'; /** * Represents the `IRangeable` interface. * * @template TType - The type of the range. * @public */ export interface IRangeableProps { min: TType; max: TType; } /** * @public */ export declare const Rangeable: (base: ControlBehaviorBase) => ControlBehaviorReturn, IRangeableProps>; //# sourceMappingURL=Rangeable.d.ts.map