import { DataSource } from "typeorm";
import { OpdPrescription } from "./entities/opd_prescription.entity";
export declare class OpdPrescriptionService {
    private readonly connection;
    private readonly dynamicConnection;
    constructor(connection: DataSource, dynamicConnection: DataSource);
    create(createPrescriptionOpd: OpdPrescription): Promise<{
        "data ": {
            status: string;
            message: string;
            Added_Opd_Prescription_Values: any;
        };
    }[]>;
}
