import { Aggregation, AggregationTypes } from './aggregation'; import { Ref } from '../ref'; export declare class AggregationBuilder { private name; private ref; constructor(name: AggregationTypes, ref: Ref); refs(): Ref; build(ref?: Ref): Aggregation; }