/** * Calculate the deviation from the mean. * * Note: The deviation from the mean is the difference between the mean and the data point. * * @param data - The data to calculate the deviation from the mean * @returns The deviation from the mean * * @example * ```ts * const data = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; * const deviation = await deviationFromMean(data); * console.log(deviation); * ``` */ export declare function deviationFromMean(data: number[] | Float32Array): Promise;