import type { PromqlFunctionDefinition } from '../../definition_types'; /** * Returns `k` arbitrary elements from the input vector, keeping their full label set. Unlike `topk` and `bottomk`, selection is not sort-based and histogram samples are included. * * @example * limitk(3, http_requests_total) */ declare const definition: PromqlFunctionDefinition; export default definition; //# sourceMappingURL=limitk.d.ts.map