import type { PromqlFunctionDefinition } from '../../definition_types'; /** * Calculates the increase in the time series in the range vector, adjusting for counter resets. Requires a counter input; non-counter inputs are automatically coerced with `to_counter`. The metric's configured temporality (cumulative or delta) is honored. The result is always a `double`. * * @example * increase(http_requests_total[5m]) */ declare const definition: PromqlFunctionDefinition; export default definition; //# sourceMappingURL=increase.d.ts.map