import { RequestOptionsFactory } from '@wix/sdk-types'; /** * TEST The `getOrder()` function returns a Promise that is returned when an order is retrieved. * * 1. First do this. * 1. The do that * + This is a bullet * + So is this. * * > **Note**: This indentation is not how our notes generally look but I will waiit to see the branch preview. I am just trying out some markdown here. * */ export declare function getOrder(payload: object): RequestOptionsFactory; /** Retrieves a list of up to 1000 orders, given the provided filters. */ export declare function listOrders(payload: object): RequestOptionsFactory; /** * Changes the order status to `ACCEPTED`. * * > **Note:** It is not possible to change the order status from `FULFILLED` to `ACCEPTED`. */ export declare function acceptOrder(payload: object): RequestOptionsFactory; /** Changes the order status to `CANCELED`. */ export declare function cancelOrder(payload: object): RequestOptionsFactory; /** Changes the order status to `FULFILLED`. */ export declare function fulfillOrder(payload: object): RequestOptionsFactory;