import { BaseModel } from "../../base-model";
export declare class WalletTransactionModel extends BaseModel {
    transactionId: string;
    userId: string;
    requestedId: string;
    leadId: string;
    orderId?: string;
    amount: number;
    title: string;
    reason: string;
    transactionNote: string;
    status: string;
    correspondence?: string;
}
