import type { FunctionDefinition } from '../../definition_types'; /** * Calculates the latest value of a field, where recency determined by the `@timestamp` field. * * @example * TS k8s * | STATS max_cost=MAX(LAST_OVER_TIME(network.cost)) BY cluster, time_bucket = TBUCKET(1minute) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=last_over_time.d.ts.map