export declare class IpdChargesDto {
    id: number;
    date: Date;
    ipd_id: number;
    opd_id: number;
    qty: number;
    charge_id: number;
    patient_id: number;
    standard_charge: any;
    tpa_charge: any;
    tax: any;
    apply_charge: any;
    amount: any;
    note: string;
    created_at: Date;
    name: string;
    charge_type_id: number;
    charge_type: string;
    Hospital_id: number;
    hos_opd_id: number;
    hospital_ipd_details_id: number;
}
export declare class CountDto {
    details: IpdChargesDto[];
    total: number;
}
