import type { FunctionDefinition } from '../../definition_types'; /** * Remove duplicate values from a multivalued field. * * Note: `MV_DEDUPE` may, but won’t always, sort the values in the column. * * @example * ROW a=["foo", "foo", "bar", "foo"] * | EVAL dedupe_a = MV_DEDUPE(a) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=mv_dedupe.d.ts.map