import { OpdPrescriptionService } from './opd_prescription.service';
import { OpdPrescription } from './entities/opd_prescription.entity';
export declare class OpdPrescriptionController {
    private readonly opdPrescriptionService;
    constructor(opdPrescriptionService: OpdPrescriptionService);
    create(createPrescriptionOpd: OpdPrescription): Promise<{
        "data ": {
            status: string;
            message: string;
            Added_Opd_Prescription_Values: any;
        };
    }[]>;
}
