import type { FunctionDefinition } from '../../definition_types'; /** * The average of a numeric field. * * @example * FROM employees * | STATS AVG(height) * * @example * FROM employees * | STATS avg_salary_change = ROUND(AVG(MV_AVG(salary_change)), 10) * * @example * TS exp_histo_sample * | WHERE instance == "instance-0" * | STATS average = ROUND(AVG(responseTime), 4) * * @example * TS histogram_timeseries_index * | WHERE instance == "instance-0" * | STATS average = ROUND(AVG(responseTime::tdigest), 4) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=avg.d.ts.map