import { IApiResponseCollection, IApiResponse, IPayment, IPaymentBalanceTransaction } from '..'; export interface IPaymentService { fetchPayments(accountId: string, authToken: string, params: any): Promise>; fetchPayment(paymentId: string, authToken: string): Promise>; fetchPaymentTransactions(paymentId: string, params: any, authToken: string): Promise>; } export declare class PaymentService implements IPaymentService { fetchPayments(accountId: string, authToken: string, params: any): Promise>; fetchPayment(paymentId: string, authToken: string): Promise>; fetchPaymentTransactions(paymentId: string, authToken: string, params: any): Promise>; }