import { PhrAppointmentService } from './phr-appointment.service';
import { PhrAppointment, phrupdatepaymentdetails } from './entities/phr-appointment.entity';
export declare class PhrAppointmentController {
    private readonly phrAppointmentService;
    constructor(phrAppointmentService: PhrAppointmentService);
    create(createPhrAppointmentDto: PhrAppointment): Promise<any>;
    findAll(): string;
    findOne(id: string): Promise<any>;
    findQr(id: string): Promise<any[] | {
        QR_Type_id: number;
        QR_Type: string;
        Appointment_details: any;
    }>;
    update(id: string, updatePhrAppointmentDto: PhrAppointment): Promise<any>;
    updateCancelApp(id: string, updatePhrAppointmentDto: PhrAppointment): Promise<string | {
        status: string;
        messege: string;
        inserted_details: any;
    }[]>;
    remove(id: string): Promise<any>;
    updatepaymentdetails(transaction_id: string, hospital_id: number, updatePhrAppointmentDto: phrupdatepaymentdetails): Promise<{
        status_code: number;
        status: string;
        message: string;
    }>;
}
