import { TranscodeMessageRequestData, TranscodeMessageResponse } from '../../../models'; import { ConversationDomainApi } from '../conversation-domain-api'; import { LazyConversationApiClient } from '../conversation-service'; export declare class TranscodingApi extends ConversationDomainApi { constructor(lazyApiClient: LazyConversationApiClient); /** * Transcode a message * Transcodes the message from the Conversation API format to the channel-specific formats for the requested channels. No message is sent to the contact. * @param { TranscodeMessageRequestData } data - The data to provide to the API call. */ transcodeMessage(data: TranscodeMessageRequestData): Promise; }