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