import { PatientprofileService } from "./patient-profile.service";
import { ABHAProfile, Patientprofile } from "./entities/patient-profile.entity";
export declare class PatientprofileController {
    private readonly patientprofileService;
    constructor(patientprofileService: PatientprofileService);
    getPatientDetails(patientId: number, hospital_id: number): Promise<any>;
    updateStatus(patientId: number, Entity: Patientprofile, hospital_id: number): Promise<any>;
    updateabhaAddress(patientId: number, Entity: Patientprofile, hospital_id: number): Promise<any>;
    updateabhaNumber(patientId: number, Entity: ABHAProfile, hospital_id: number): Promise<any>;
    updateVerifyabhaNumber(patientId: number, Entity: ABHAProfile, hospital_id: number): Promise<any>;
    getRegistrationStatus(Entity: any, hospital_id: number): Promise<any>;
    updateOnlyABHANumber(aayush_unique_id: any, abhaNumber: any, hospital_id: number): Promise<any>;
}
