import type { FunctionDefinition } from '../../definition_types'; /** * Calculates the population standard deviation over time of a numeric field. * * @example * TS k8s * | STATS max_stddev_cost=MAX(STDDEV_OVER_TIME(network.cost)) BY cluster, time_bucket = TBUCKET(1minute) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=stddev_over_time.d.ts.map