import { EventEmitter2 } from '@nestjs/event-emitter';
import { DataSource } from 'typeorm';
import { ClinicalNote } from './entities/op-hub-clinical-note.entity';
export declare class OpHubClinicalNotesService {
    private readonly dynamicConnection;
    private readonly connection;
    private readonly eventEmitter;
    constructor(dynamicConnection: DataSource, connection: DataSource, eventEmitter: EventEmitter2);
    create(createPrescriptionDto: ClinicalNote): Promise<any>;
    findAll(createPrescriptionDto: ClinicalNote): Promise<any>;
}
