///
import { Request } from '@loopback/rest';
import { PatientService, Prescription, PrescriptionMedicinesController } from '@sourcefuse-npm/patient-facade';
import { AppointmentFeedbackService } from '../services';
export declare class PrescriptionAPIController extends PrescriptionMedicinesController {
protected patientService: PatientService;
appointmentFeedbackService: AppointmentFeedbackService;
constructor(patientService: PatientService, appointmentFeedbackService: AppointmentFeedbackService);
createPrescription(request: Request, prescriptionMedicines: Omit): Promise;
}