/** * Constrain a value by clamping it within the specified range. * If `isCyclic` is true, the value will wrap around when it exceeds the bounds. */ export declare function constrainValue(value: number | null, minValue?: number, maxValue?: number, isCyclic?: boolean): number | null;