import { RequestOptionsFactory } from '@wix/sdk-types'; /** * Retrieves information about payments and refunds associated with a specified order. * * * The `listTransactionsForSingleOrder()` function returns a Promise that resolves when the specified order's transaction records are retrieved. */ export declare function listTransactionsForSingleOrder(payload: object): RequestOptionsFactory; /** * Retrieves information about payments and refunds associated with all specified orders. * * * The `listTransactionsForMultipleOrders()` function returns a Promise that resolves when the specified orders' transaction records are retrieved. */ export declare function listTransactionsForMultipleOrders(payload: object): RequestOptionsFactory; /** * Adds up to 50 payment records to an order. * * * The `addPayments()` function returns a Promise that resolves when the payment records are added to an order. * * > **Note:** This does **NOT** perform the actual charging - the order is only updated with records of the payments. */ export declare function addPayments(payload: object): RequestOptionsFactory; /** * Updates the status of an order's payment. * * * The `updatePaymentStatus()` function returns a Promise that resolves when the payment status is updated. */ export declare function updatePaymentStatus(payload: object): RequestOptionsFactory; /** * Updates multiple order payments with a specified status. * * * The `bulkUpdatePaymentStatus()` function returns a Promise that resolves when the payment statuses are updated. */ export declare function bulkUpdatePaymentStatuses(payload: object): RequestOptionsFactory;