import type { FunctionDefinition } from '../../definition_types'; /** * Returns unique (deduplicated) values as a multivalued field. The order of the returned values isn’t guaranteed. * If you need the values returned in order use * `MV_SORT`. * * @example * FROM employees * | EVAL first_letter = SUBSTRING(first_name, 0, 1) * | STATS first_name = MV_SORT(VALUES(first_name)) BY first_letter * | SORT first_letter */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=values.d.ts.map