import { OpHubGetAbhaAddressOfPatientService } from './op-hub-get-abha-address-of-patient.service';
export declare class OpHubGetAbhaAddressOfPatientController {
    private readonly getAbhaAddressOfPatientService;
    constructor(getAbhaAddressOfPatientService: OpHubGetAbhaAddressOfPatientService);
    findAll(patient_id: number): Promise<{
        status: string;
        message: string;
        abha_address: any;
    } | {
        status: string;
        message: string;
        abha_address?: undefined;
    }>;
}
