import { PrescriptionService } from './prescription.service';
import { Prescription } from './entities/prescription.entity';
export declare class CreatePrescriptionResponseDto {
    status: string;
    message: string;
}
export declare class GetPrescriptionResponseDto {
    record_name: string;
    files: string;
    tags: string | null;
    hos_opd_id: number;
    doctorName: string | null;
    appointDate: string;
}
export declare class PrescriptionController {
    private readonly prescriptionService;
    constructor(prescriptionService: PrescriptionService);
    create(createPrescriptionDto: Prescription): Promise<any>;
    findAll(createPrescriptionDto: Prescription): Promise<any>;
}
