import type { FunctionDefinition } from '../../definition_types'; /** * Converts a multivalued field into a single valued field containing the value at which a certain percentage of observed values occur. * * @example * ROW values = [5, 5, 10, 12, 5000] * | EVAL p50 = MV_PERCENTILE(values, 50), median = MV_MEDIAN(values) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=mv_percentile.d.ts.map