export declare class CreatePhpTransactionReportDto {
    startDate: string;
    endDate: string;
}
export declare class PaymentDto {
    id: number;
    txn_id: string;
    pg_ref_id: string;
    bank_ref_id: string;
    type: string;
    section: string;
    patient_id: number;
    case_reference_id: number;
    patient_charges_id: number;
    opd_id: number;
    ipd_id?: number;
    pharmacy_bill_basic_id?: number;
    pathology_billing_id?: number;
    radiology_billing_id?: number;
    blood_donor_cycle_id?: number;
    blood_issue_id?: number;
    ambulance_call_id?: number;
    appointment_id: number;
    attachment?: string;
    attachment_name?: string;
    amount_type?: string;
    amount: number;
    payment_mode: string;
    cheque_no?: string;
    cheque_date?: string;
    payment_date: string;
    note?: string;
    received_by?: string;
    created_at: string;
    payment_gateway?: string;
    payment_id?: string;
    payment_reference_number?: string;
    temp_appt_payment_gateway?: string;
    temp_appt_payment_id?: string;
    temp_appt_payment_reference_number?: string;
    temp_appt_amount: number;
    ward: string;
    reference: number;
    module_id: number;
    patient_name: string;
    head: string;
    module_no: string;
    name?: string;
    surname?: string;
    employee_id?: number;
}
export declare class CreatePhpTransactionReportResponseDto {
    total: number;
    details: PaymentDto[];
}
