import { DataSource } from 'typeorm';
import { UnlinkAbhaFromPatient } from './entities/unlink-abha-from-patient.entity';
export declare class UnlinkAbhaFromPatientService {
    private readonly connection;
    constructor(connection: DataSource);
    create(createUnlinkAbhaFromPatientDto: UnlinkAbhaFromPatient): Promise<any>;
}
