/** * @param {number[]} arr - The array of which the arithmetic mean is calculated on * @returns {number} The arithmetic mean */ export declare const arithmetic: (arr: number[]) => number;