import { AppointmentNoSendService } from './appointment_no_send.service';
export declare class AppointmentNoSendController {
    private readonly appointmentNoSendService;
    constructor(appointmentNoSendService: AppointmentNoSendService);
    sendemail(email: string, name: string, HosName: string, date_time: string, appoint_no: string, location: string): Promise<{
        success: boolean;
        result: any;
        error?: undefined;
    } | {
        success: boolean;
        error: any;
        result?: undefined;
    }>;
}
