import type { FunctionDefinition } from '../../definition_types'; /** * The value that is greater than half of all values and less than half of all values, also known as the 50% `PERCENTILE`. * * Note: Like `PERCENTILE`, `MEDIAN` is usually approximate. * * @example * FROM employees * | STATS MEDIAN(salary), PERCENTILE(salary, 50) * * @example * FROM employees * | STATS median_max_salary_change = MEDIAN(MV_MAX(salary_change)) * * @example * TS exp_histo_sample * | WHERE instance == "instance-0" * | STATS p50 = ROUND(MEDIAN(responseTime), 4) * * @example * TS histogram_timeseries_index * | WHERE instance == "instance-0" * | STATS p50 = ROUND(MEDIAN(responseTime::tdigest), 2) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=median.d.ts.map