import type { FunctionDefinition } from '../../definition_types'; /** * Groups by all time-series dimensions except the specified ones. When called with no arguments, groups by all dimensions. * * @example * TS k8s * | STATS total_cost = sum(network.cost) BY WITHOUT(pod) * | SORT total_cost * * @example * TS k8s * | STATS total_cost = sum(network.cost) BY WITHOUT(pod, region) * | SORT total_cost * * @example * TS k8s * | STATS total_cost = sum(network.cost) BY WITHOUT() * | SORT total_cost */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=without.d.ts.map