import type { AxiosInstance, AxiosRequestConfig, AxiosResponse } from 'axios'; import type { ContactLinkingServiceCreateContactFromConversationParams, ContactLinkingServiceLinkContactToClientParams, WebitelChatEmptyResponse, WebitelChatLookup } from '../_models'; export declare const // --- title start getContactLinkingService: (axiosInstance?: AxiosInstance) => { contactLinkingServiceCreateContactFromConversation: (conversationId: string, params?: ContactLinkingServiceCreateContactFromConversationParams, options?: AxiosRequestConfig) => Promise>; contactLinkingServiceLinkContactToClient: (conversationId: string, params?: ContactLinkingServiceLinkContactToClientParams, options?: AxiosRequestConfig) => Promise>; }; export type ContactLinkingServiceCreateContactFromConversationResult = AxiosResponse; export type ContactLinkingServiceLinkContactToClientResult = AxiosResponse;