import type { NextFunction, Request, Response } from 'express'; import type { Services } from '../../typings'; /** * @alpha * * Aggregation route * * @param services Services */ export declare function aggregate(services: Services): (req: Request, res: Response, next: NextFunction) => Promise;