import { HospitalChargesService } from './hospital_charges.service';
import { HospitalCharge } from './entities/hospital_charge.entity';
export declare class HospitalChargesController {
    private readonly hospitalChargesService;
    constructor(hospitalChargesService: HospitalChargesService);
    update(id: string, hos_chargesEntity: HospitalCharge): Promise<any>;
    findall(plenome_id: string): Promise<any>;
}
