import { OpHubPrescriptionService } from './op-hub-prescription.service';
import { Prescription } from './entities/op-hub-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 OpHubPrescriptionController {
    private readonly prescriptionService;
    constructor(prescriptionService: OpHubPrescriptionService);
    create(createPrescriptionDto: Prescription): Promise<any>;
    findAll(createPrescriptionDto: Prescription): Promise<any>;
}
