import { EmailAppointmentRescheduledService } from './email_appointment_rescheduled.service';
export declare class EmailAppointmentRescheduledController {
    private readonly emailAppointmentRescheduledService;
    constructor(emailAppointmentRescheduledService: EmailAppointmentRescheduledService);
    rescheduleEmail(email: string, name: string, HosName: string, date: Date, drname: string, time: any, location: string): Promise<{
        success: boolean;
        result: any;
        error?: undefined;
    } | {
        success: boolean;
        error: any;
        result?: undefined;
    }>;
}
