import { EmailAppointmentBookedService } from './email_appointment_booked.service';
export declare class EmailAppointmentBookedController {
    private readonly emailAppointmentBookedService;
    constructor(emailAppointmentBookedService: EmailAppointmentBookedService);
    sendemail(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;
    }>;
}
