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