import { OpHubPatientProfileService } from './op-hub-patient-profile.service';
import { Patientprofile, ABHAProfile } from './entities/op-hub-patient-profile.entity';
export declare class OpHubPatientProfileController {
    private readonly patientprofileService;
    constructor(patientprofileService: OpHubPatientProfileService);
    getPatientDetails(patientId: number, hospital_id: number): Promise<any>;
    updateStatus(patientId: number, Entity: Patientprofile, hospital_id: number): Promise<any[] | {
        status: string;
        message: string;
    }>;
    updateabhaAddress(patientId: number, Entity: Patientprofile, hospital_id: number): Promise<any[]>;
    updateabhaNumber(patientId: number, Entity: ABHAProfile, hospital_id: number): Promise<any[] | {
        status: string;
        message: string;
    }>;
    updateVerifyabhaNumber(patientId: number, Entity: ABHAProfile, hospital_id: number): Promise<any[]>;
    getRegistrationStatus(Entity: any, hospital_id: number): Promise<{
        status: string;
        data: any;
        message?: undefined;
    } | {
        status: string;
        message: string;
        data?: undefined;
    }>;
    updateNumber(aayush_unique_id: any, abhaNumber: any): Promise<any>;
}
