import type { FunctionDefinition } from '../../definition_types'; /** * Converts a multivalued field into a single valued field containing the sum of all of the values. * * @example * ROW a=[3, 5, 6] * | EVAL sum_a = MV_SUM(a) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=mv_sum.d.ts.map