import type { FunctionDefinition } from '../../definition_types'; /** * Converts a multivalued string expression into a single valued column containing the concatenation of all values separated by a delimiter. * * @example * ROW a=["foo", "zoo", "bar"] * | EVAL j = MV_CONCAT(a, ", ") * * @example * ROW a=[10, 9, 8] * | EVAL j = MV_CONCAT(TO_STRING(a), ", ") */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=mv_concat.d.ts.map