import { IApiResponse, IApiResponseCollection, IPayout, IPayoutBalanceTransaction } from '..'; export interface IPayoutService { fetchPayouts(accountId: string, authToken: string, params: any): Promise>; fetchPayout(payoutId: string, authToken: string): Promise>; fetchCSV(payoutId: string, authToken: string): Promise>; fetchPayoutTransactions(accountId: string, authToken: string, params: any): Promise>; } export declare class PayoutService implements IPayoutService { fetchPayouts(accountId: string, authToken: string, params: any): Promise>; fetchPayout(payoutId: string, authToken: string): Promise>; fetchCSV(payoutId: string, authToken: string): Promise>; fetchPayoutTransactions(accountId: string, authToken: string, params: any): Promise>; }