import { Ref } from '../ref'; export declare type AggregationTypes = 'min' | 'max' | 'sum' | 'avg'; export declare class Aggregation { private name; private ref; constructor(name: AggregationTypes, ref: Ref); toString(): string; }