import * as Types from '../types/Types.js'; interface PaymentAccountTransactionResponse extends Types.PaymentAccountTransaction, Types.APIResponse { } interface PaymentAccountTransactionListResponse extends Types.APIResponse { payment_account_transactions: Array; meta: Types.ListMeta; } interface PaymentAccountTransactionListRequest { after?: string; before?: string; direction?: Types.PaymentAccountTransactionDirection; limit?: string; value_date_from: string; value_date_to: string; } export declare class PaymentAccountTransactionService { private api; constructor(api: any); find(identity: string, customHeaders?: Types.JsonMap): Promise; list(identity: string, requestParameters: PaymentAccountTransactionListRequest, customHeaders?: Types.JsonMap): Promise; all(identity: string, requestParameters: PaymentAccountTransactionListRequest, customHeaders?: Types.JsonMap): AsyncGenerator; } export {}; //# sourceMappingURL=paymentAccountTransactionService.d.ts.map