export declare class DonorDetail {
    id: number;
    donor_name: string;
    date_of_birth: Date;
    blood_bank_product_id: number;
    gender: string;
    father_name: string;
    address: string;
    contact_no: string;
    hospital_id: number;
    blood_donor_cycle_id: number;
    blood_donor_id: number;
    charge_id: number;
    donate_date: Date;
    bag_no: string;
    lot: string;
    quantity: number;
    standard_charge: any;
    apply_charge: any;
    amount: any;
    institution: string;
    note: string;
    discount_percentage: any;
    tax_percentage: any;
    volume: string;
    unit: number;
    available: number;
    cheque_no: string;
    cheque_date: Date;
    payment_date: Date;
    attachment: string;
    attachment_name: string;
    received_by: number;
    payment_mode: string;
}
