import type { PromqlFunctionDefinition } from '../../definition_types'; /** * Calculates the per-second instant rate of increase based on the last two data points. 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 * irate(http_requests_total[5m]) */ declare const definition: PromqlFunctionDefinition; export default definition; //# sourceMappingURL=irate.d.ts.map