import { EmailTemporaryAppointmentService } from './email_temporary_appointment.service';
export declare class EmailTemporaryAppointmentController {
    private readonly emailTemporaryAppointmentService;
    constructor(emailTemporaryAppointmentService: EmailTemporaryAppointmentService);
    sendemail(email: string, name: string, HosName: string, date_time: string, TEM_APP_NO: string, company: string): Promise<{
        success: boolean;
        result: any;
        error?: undefined;
    } | {
        success: boolean;
        error: any;
        result?: undefined;
    }>;
}
