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