import { IResponse } from '@kontent-ai/core-sdk'; import { PreviewContracts } from '../contracts'; import { BaseMapper } from './base-mapper'; import { PreviewResponses } from '../responses/preview/preview-responses'; export declare class PreviewMapper extends BaseMapper { mapPreviewConfigurationResponse(response: IResponse): PreviewResponses.PreviewConfigurationResponse; mapModifyConfigurationResponse(response: IResponse): PreviewResponses.ModifyConfigurationResponse; mapLivePreviewConfigurationResponse(response: IResponse): PreviewResponses.LivePreviewConfigurationResponse; mapChangeLivePreviewConfigurationResponse(response: IResponse): PreviewResponses.ChangeLivePreviewConfigurationResponse; private mapLivePreviewConfiguration; private mapPreviewConfiguration; } export declare const previewMapper: PreviewMapper;