export declare class PatientTransactionDto {
    patientId: number;
    patient_name: string;
    transaction_id: string;
    payment_date: string;
    payment_mode: string;
    amount: number;
}
export declare class PatientTransactionDtoWithCount {
    Totalcount: number;
    TotalAmount: number;
    details: PatientTransactionDto[];
}
