import { OpdPrescriptionService } from './opd-prescription.service';
import { CreateOpdPrescriptionDto } from './dto/create-opd-prescription.dto';
import { UpdateOpdPrescriptionDto } from './dto/update-opd-prescription.dto';
export declare class OpdPrescriptionController {
    private readonly opdPrescriptionService;
    constructor(opdPrescriptionService: OpdPrescriptionService);
    create(createOpdPrescriptionDto: CreateOpdPrescriptionDto | CreateOpdPrescriptionDto[]): Promise<any>;
    findAll(opd_id: any, hospital_id: any): Promise<any>;
    update(updateOpdPrescriptionDto: UpdateOpdPrescriptionDto): Promise<any>;
    remove(id: any, hospital_id: any): Promise<any>;
}
