import { RequestHandler } from 'express';
import { Services } from '../../../types/Services';
declare class DownloadReportController {
    layoutPath: string;
    services: Services;
    constructor(layoutPath: string, services: Services);
    POST: RequestHandler;
}
export { DownloadReportController };
export default DownloadReportController;
