import { RequestOptionsFactory } from '@wix/sdk-types'; /** * Bulk creates messages. * * This method must be called using the site visitor or site member identity ([SDK](https://dev.wix.com/docs/sdk/articles/get-started/about-identities#site-member) | [REST](https://dev.wix.com/docs/rest/articles/getting-started/about-identities#site-member)) to identify the site visitor that is creating the messages. Therefore, [Wix apps](https://dev.wix.com/docs/build-apps) can't currently call this method using REST. */ export declare function bulkCreateMessages(payload: object): RequestOptionsFactory; /** * Retrieves a list of messages. * * Up to 100 Messages can be returned per request. * * This method must be called using the site visitor or site member identity ([SDK](https://dev.wix.com/docs/sdk/articles/get-started/about-identities#site-member) | [REST](https://dev.wix.com/docs/rest/articles/getting-started/about-identities#site-member)) to identify the site visitor that is retrieving the messages. Therefore, [Wix apps](https://dev.wix.com/docs/build-apps) can't currently call this method using REST. */ export declare function listMessages(payload: object): RequestOptionsFactory;