import type { FunctionDefinition } from '../../definition_types'; /** * Limits (or clamps) the values of all samples to have a lower limit of min and an upper limit of max. * * @example * TS k8s * | EVAL full_clamped_cost = clamp(network.cost, clamp_max(network.bytes_in, 5), network.bytes_in / 100) * | KEEP full_clamped_cost, @timestamp */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=clamp.d.ts.map