import { OpHubUnlinkAbhaFromPatientService } from './op-hub-unlink-abha-from-patient.service';
import { UnlinkAbhaFromPatient } from './entities/op-hub-unlink-abha-from-patient.entity';
export declare class OpHubUnlinkAbhaFromPatientController {
    private readonly unlinkAbhaFromPatientService;
    constructor(unlinkAbhaFromPatientService: OpHubUnlinkAbhaFromPatientService);
    create(createUnlinkAbhaFromPatientDto: UnlinkAbhaFromPatient): Promise<{
        status: string;
        message: string;
        error?: undefined;
    } | {
        status: string;
        message: string;
        error: any;
    }>;
}
