/** * Compute the mean (average) of all the numbers in the given array. * Non-numbers will be coerced into numbers if possible. */ declare function mean(numbers: unknown[]): number; export { mean };