/** * Returns the sum/total for an array of numbers */ declare const total: (arr: number[]) => number; export default total;