import { aggregate, controllerResponse } from "../../types";
/**
 * Perform bulk aggregation for an array of aggregation requests.
 * @param bodyArray Array of aggregation requests, each containing schema and aggregation pipeline
 * @returns Controller response indicating success or failure and results of aggregated queries
 */
export declare function bulkAggregate(bodyArray: aggregate[]): Promise<controllerResponse>;
