import type { FunctionDefinition } from '../../definition_types'; /** * Returns a subset of the multivalued field using the start and end index values. Indexes are 0-based. * This is most useful when reading from a function that emits multivalued columns * in a known order like `SPLIT` or `MV_SORT`. * * @example * row a = [1, 2, 2, 3] * | eval a1 = mv_slice(a, 1), a2 = mv_slice(a, 2, 3) * * @example * row a = [1, 2, 2, 3] * | eval a1 = mv_slice(a, -2), a2 = mv_slice(a, -3, -1) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=mv_slice.d.ts.map