import { PhoneCallLogService } from './phone_call_log.service';
import { PhoneCallLog } from './entities/phone_call_log.entity';
export declare class PhoneCallLogController {
    private readonly phoneCallLogService;
    constructor(phoneCallLogService: PhoneCallLogService);
    create(createPhoneCallLog: PhoneCallLog): Promise<{
        "data ": {
            status: string;
            messege: string;
            calls_Details: any;
        };
    }[]>;
    update(id: number, createPhoneCallLog: PhoneCallLog): Promise<{
        "data ": {
            status: string;
            messege: string;
            updated_values: any;
        };
    }[]>;
    removeFrontofficeCallLogs(id: number, hospital_id: number): Promise<{
        status: string;
        message: string;
    }>;
}
