import { Request, Response } from 'express';
import { Services } from '../../../types/Services';
type ReportConfig = {
    reportId: string;
    id: string;
    name: string;
    reportName: string;
    description: string;
    type: string;
};
export declare const renderSubscriptionToggleAsHtml: (req: Request, res: Response, schedule: string, reportConfig: ReportConfig, services: Services) => Promise<string>;
export {};
