import { EventEmitter2 } from '@nestjs/event-emitter';
import { DataSource } from 'typeorm';
import { UnlinkAbhaFromPatient } from './entities/op-hub-unlink-abha-from-patient.entity';
export declare class OpHubUnlinkAbhaFromPatientService {
    private readonly dynamicConnection;
    private readonly connection;
    private readonly eventEmitter;
    constructor(dynamicConnection: DataSource, connection: DataSource, eventEmitter: EventEmitter2);
    create(createUnlinkAbhaFromPatientDto: UnlinkAbhaFromPatient): Promise<{
        status: string;
        message: string;
        error?: undefined;
    } | {
        status: string;
        message: string;
        error: any;
    }>;
}
