import { Request, Response } from 'express';
import { Services } from '../../../types/Services';
/**
 * Unsubscribes a user to a scheduled report
 *
 * @param {Request} req
 * @param {Response} res
 * @param {Services} services
 * @return {*}
 */
export declare const unsubscribe: (req: Request, res: Response, services: Services) => Promise<{
    returnTo: any;
}>;
