/**
 * Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
 * This product includes software developed at Datadog (https://www.datadoghq.com/).
 * Copyright 2020-Present Datadog, Inc.
 */
import { UnparsedObject } from "../../datadog-api-client-common/util";
/**
 * Standard aggregation types for events-based queries.
 */
export declare type EventsAggregationValue = typeof AVG | typeof CARDINALITY | typeof COUNT | typeof DELTA | typeof EARLIEST | typeof LATEST | typeof MAX | typeof MEDIAN | typeof MIN | typeof MOST_FREQUENT | typeof SUM | UnparsedObject;
export declare const AVG = "avg";
export declare const CARDINALITY = "cardinality";
export declare const COUNT = "count";
export declare const DELTA = "delta";
export declare const EARLIEST = "earliest";
export declare const LATEST = "latest";
export declare const MAX = "max";
export declare const MEDIAN = "median";
export declare const MIN = "min";
export declare const MOST_FREQUENT = "most_frequent";
export declare const SUM = "sum";
