import { DataSource } from "typeorm";
import { PhoneCallLog } from "./entities/phone_call_log.entity";
export declare class PhoneCallLogService {
    private readonly connection;
    private readonly dynamicConnection;
    constructor(connection: DataSource, dynamicConnection: DataSource);
    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<{
        [key: string]: any;
    }[]>;
}
