import type { FunctionDefinition } from '../../definition_types'; /** * The maximum value of a field. * * @example * FROM employees * | STATS MAX(languages) * * @example * FROM employees * | STATS max_avg_salary_change = MAX(MV_AVG(salary_change)) * * @example * TS exp_histo_sample * | WHERE instance == "instance-0" * | STATS maximum = ROUND(MAX(responseTime), 4) * * @example * TS histogram_timeseries_index * | WHERE instance == "instance-0" * | STATS maximum = ROUND(MAX(responseTime::tdigest), 4) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=max.d.ts.map