import { User } from '../users/user.entity';
import { Campaign } from '../campaigns/campaign.entity';
import { Application } from '../applications/application.entity';
export declare class PaymentTransaction {
    id: string;
    tx_ref: string;
    amount: number;
    currency: string;
    payment_method: string;
    status: string;
    provider_reference: string;
    provider_response: string;
    payer: User;
    payee: User;
    campaign: Campaign;
    application: Application;
    created_at: Date;
    updated_at: Date;
}
