import type { FunctionDefinition } from '../../definition_types'; /** * Calculates the minimum over time value of a field. * * @example * TS k8s * | STATS cost=SUM(MIN_OVER_TIME(network.cost)) BY cluster, time_bucket = TBUCKET(1minute) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=min_over_time.d.ts.map