import type { FunctionDefinition } from '../../definition_types'; /** * Calculates the percentile over time of a field. * * @example * TS k8s * | STATS p95_cost=MAX(PERCENTILE_OVER_TIME(network.cost, 95)), p99_cost=MAX(PERCENTILE_OVER_TIME(network.cost, 99)) BY cluster, time_bucket = TBUCKET(1minute) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=percentile_over_time.d.ts.map