import type { FunctionDefinition } from '../../definition_types'; /** * Calculates the absence of a field in the output result over time range. * * @example * TS k8s * | WHERE cluster == "prod" AND pod == "two" * | STATS events_received = MAX(ABSENT_OVER_TIME(events_received)) BY pod, time_bucket = TBUCKET(2 minute) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=absent_over_time.d.ts.map