import { HttpClient, NonNullablePaths, MaybeContext, BuildRESTFunction } from '@wix/sdk-types'; import { GetConversationResponse } from './index.typings.js'; export { AccountInfo, ActionEvent, Conversation, ConversationParticipantIdOneOf, DomainEvent, DomainEventBodyOneOf, EntityCreatedEvent, EntityDeletedEvent, EntityUpdatedEvent, GetConversationRequest, IdentificationData, IdentificationDataIdOneOf, MessageEnvelope, RestoreInfo, WebhookIdentityType, WebhookIdentityTypeWithLiterals } from './index.typings.js'; declare function getConversation$1(httpClient: HttpClient): GetConversationSignature; interface GetConversationSignature { /** * Retrieves the conversation for the site visitor calling this method. * * 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 requesting the conversation. */ (): Promise>; } declare const getConversation: MaybeContext & typeof getConversation$1>; export { GetConversationResponse, getConversation };