import { IEventModel, ISellerPartnerData } from "@nimee/shared-types"; export declare class PaymentClient { getCouponById(params: { accountId: string; eventId: string; couponId: string; jwt: string; }): Promise; createEventCouponsFromProductionCoupons(params: { accountId: string; eventId: string; jwt: string; }): Promise; generateSale(params: { accountId: string; eventId: string; jwt: string; token: string; }): Promise; createSellerPartner(params: { sellerData: ISellerPartnerData; accountId: string; jwt: string; }): Promise; getPrice(params: { accountId: string; event: IEventModel; ticketsIdsChosen: string[]; couponId?: string; shouldIncCouponUsage?: boolean; endUserSeasonTicketId?: string; timeSlotId?: string; voucherRedemptionIds?: string[]; }): Promise; getSeasonTicketBySellerIdPublic(params: { marketplaceId: string; sellerId: string; }): Promise; recomputeProfileCompletenessForEndUser(params: { endUserId: string; }): Promise; reconcilePaymeFeesForEvent(params: { eventId: string; jwt: string; }): Promise; }