import { IPaymentWallet } from '../interfaces';
export declare class PaymentWalletEntity implements IPaymentWallet {
    name: string;
    constructor(data?: Partial<PaymentWalletEntity>);
}
