import { Prescription } from './entities/prescription.entity';
import { DataSource } from 'typeorm';
export declare class PrescriptionService {
    private readonly connection;
    constructor(connection: DataSource);
    create(createPrescriptionDto: Prescription): Promise<any>;
    findAll(createPrescriptionDto: Prescription): Promise<any>;
}
