import { RequestHandler } from 'express';
import { Services } from '../../../../types/Services';
declare class SubscribedReportsController {
    services: Services;
    constructor(services: Services);
    Subscribe: RequestHandler;
    Unsubscribe: RequestHandler;
}
export { SubscribedReportsController };
export default SubscribedReportsController;
