import { OpHubPatientFromQrService } from './op-hub-patient-from-qr.service';
import { PatientFromQr, Patient } from './entities/op-hub-patient-from-qr.entity';
export declare class OpHubPatientFromQrController {
    private readonly patientFromQrService;
    constructor(patientFromQrService: OpHubPatientFromQrService);
    create(createPatientFromQr: PatientFromQr): Promise<{
        status: string;
        message: string;
        details: any;
        verified_abha_address: string;
    }[] | {
        status: string;
        message: string;
        aayush_unique_id: any;
        verified_abha_address: string;
    }[] | {
        status: string;
        message: string;
        error: any;
    }[] | {
        message: string;
    }[]>;
    AddPatient(createPatientFromQr: Patient): Promise<any>;
    patCheck(createPatientFromQr: Patient): Promise<any[]> | {
        status_code: number;
        status: string;
        message: string;
    };
}
