export declare class BillingDto {
    id: number;
    ipd_id: number;
    opd_id: number;
    date: Date;
    qty: number;
    charge_id: number;
    standard_charge: any;
    tpa_charge: any;
    tax: any;
    apply_charge: any;
    amount: any;
    note: string;
    patient_id: any;
    created_at: Date;
    Hospital_id: number;
    hos_patient_charges_id: number;
    payment_status: string;
    txn_id: any;
    pg_ref_id: any;
    bank_ref_id: any;
    payment_mode: any;
    payment_date: Date;
    totalTaxAmount: any;
}
export declare class CountDto {
    details: BillingDto[];
    total: number;
    totalTaxAmount: any;
    totalApplyCharge: any;
    totalAmount: any;
    paid: any;
    unpaid: any;
    patientInfo: any;
}
