import { AxiosInstance, AxiosResponse } from 'axios'; import { RenderedContentItem } from '../model/RenderedContentItem'; import { ContentClientConfigV1 } from '../../config/ContentClientConfigV1'; /** * @hidden */ export declare class RenderContentItem { private readonly config; private readonly contentClient; constructor(config: ContentClientConfigV1, contentClient: AxiosInstance); renderContentItem(contentItemId: string, templateName: string, customParameters?: { [id: string]: string; }): Promise; getQueryParams(templateName: string, customParameters?: { [id: string]: string; }): string[][]; parseResponse(response: AxiosResponse): RenderedContentItem; }