import { OpHubGetPatientDetailsByAayushUniqueIdService } from './op-hub-get-patient-details-by-aayush-unique-id.service';
export declare class OpHubGetPatientDetailsByAayushUniqueIdController {
    private readonly getPatDetailsByAayushUniqueIdService;
    constructor(getPatDetailsByAayushUniqueIdService: OpHubGetPatientDetailsByAayushUniqueIdService);
    findAll(aayush_unique_id: string, hospital_id: number): Promise<{
        status: string;
        message: string;
        details: any;
        error?: undefined;
    } | {
        status: string;
        message: string;
        error: any;
        details?: undefined;
    }>;
    findAlla(aayush_unique_id: string, hospital_id: number, abhaAddress: string): Promise<{
        status: string;
        message: string;
        patientDetails?: undefined;
        details?: undefined;
        error?: undefined;
    } | {
        status: string;
        message: string;
        patientDetails: any;
        details?: undefined;
        error?: undefined;
    } | {
        status: string;
        message: string;
        details: any;
        patientDetails?: undefined;
        error?: undefined;
    } | {
        status: string;
        message: string;
        error: any;
        patientDetails?: undefined;
        details?: undefined;
    }>;
    check(hospital_id: number, abhaAddress: string): Promise<{
        status: string;
        message: string;
        patientDetails?: undefined;
        error?: undefined;
    } | {
        status: string;
        message: string;
        patientDetails: any;
        error?: undefined;
    } | {
        status: string;
        message: string;
        error: any;
        patientDetails?: undefined;
    }>;
    checkNumberAndAddress(hospital_id: number, abhaNumber: string, abhaAddress: string): Promise<{
        status: string;
        message: string;
        patientDetails?: undefined;
        error?: undefined;
    } | {
        status: string;
        message: string;
        patientDetails: any;
        error?: undefined;
    } | {
        status: string;
        message: string;
        error: any;
        patientDetails?: undefined;
    }>;
}
