import { AxioDBCloud } from './AxioDBCloud.client'; /** Mirrors the Aggregation class API. */ export default class AggregationProxy { private client; private dbName; private collectionName; private pipeline; constructor(client: AxioDBCloud, dbName: string, collectionName: string, pipeline: object[]); exec(): Promise; }