/** * Returns the sum of an array of `bigint`s. * * * **not optimized** for performance * * @param a */ declare function bSum(a: bigint[]): bigint; export { bSum };