declare module 'ml-array-sum' {
  /**
   * Computes the sum of the given values.
   */
  function arraySum(array: ArrayLike<number>): number;
  export = arraySum;
}
