import { AuditableEntity } from '../../../auditable/auditable.entity'; import { Distributor } from '../users/distributor.entity'; import { User } from '../user.entity'; export declare class TotupsBranchManager extends AuditableEntity { userId: string; user: User; distributorId: string; distributor: Distributor; reference: string; amount: number; currency: string; status: string; isApproved: boolean; isRejected: boolean; isPending: boolean; isCancelled: boolean; approvedDate: Date; cancelledDate: Date; approvedBy: number; proofOfPaymentUrl: string; proofOfPaymentUrl2: string; }