import { EmailAppointmentCancelledService } from './email_appointment_cancelled.service';
export declare class EmailAppointmentCancelledController {
    private readonly emailAppointmentCancelledService;
    constructor(emailAppointmentCancelledService: EmailAppointmentCancelledService);
    sendemail(email: string, name: string, date: Date, reason: string): Promise<{
        success: boolean;
        result: any;
        error?: undefined;
    } | {
        success: boolean;
        error: any;
        result?: undefined;
    }>;
}
