import * as Options from '../options';
import { BaseService } from '../infrastructure';
import { PaymentTransaction } from '../interfaces';
export declare class PaymentTransactions extends BaseService {
    constructor(shopDomain: string, accessToken: string);
    /**
     * Retrieves a list of all balance transactions ordered by processing time, with the most recent being first.
     * @param options Options for filtering the results.
     */
    list(options?: Options.PaymentTransactionListOptions): Promise<PaymentTransaction[]>;
}
export default PaymentTransactions;
