export declare class AggregationOperation { private readonly fullName; private readonly metricRequired; static readonly TOTAL: AggregationOperation; static readonly AVERAGE: AggregationOperation; static readonly COUNT: AggregationOperation; static readonly BEST: AggregationOperation; constructor(fullName: string, metricRequired: boolean); getFullName(): string; isMetricRequired(): boolean; static asArray(): AggregationOperation[]; }