/** * Adjusts the range of data to [0, 1] by subtracting the minimum value * and dividing by the range (max - min). * * @example * ```ts * const data = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; * const adjusted = await rangeAdjust(data); * console.log(adjusted); * ``` * * @param data The numeric values to be range adjusted * @returns The range adjusted data scaled to [0, 1] */ export declare function rangeAdjust(data: number[] | Float32Array): Promise;