import { aggregate, controllerResponse, objectKey } from "../../types";
export declare const aggregationObjectKeys: objectKey[];
/**
 * Perform an aggregation using the specified schema and aggregation pipeline.
 * @param body Object containing the schema and aggregation pipeline
 * @returns Controller response indicating success or failure and the result of the aggregation
 */
export declare function aggregate(body: aggregate): Promise<controllerResponse>;
