import type { FunctionDefinition } from '../../definition_types'; /** * Combines the values from two multivalued fields with a delimiter that joins them together. * * @example * ROW a = ["x", "y", "z"], b = ["1", "2"] * | EVAL c = mv_zip(a, b, "-") * | KEEP a, b, c */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=mv_zip.d.ts.map