import { IBaseResponse } from 'kentico-cloud-core'; import { ContentTypeContracts } from '../contracts'; import { ContentTypeResponses } from '../responses'; import { BaseMapper } from './base-mapper'; export declare class ContentTypeMapper extends BaseMapper { mapListingResponse(response: IBaseResponse): ContentTypeResponses.ContentTypeListResponse; mapDeleteContentTypeResponse(response: IBaseResponse): ContentTypeResponses.DeleteContentTypeResponse; mapViewContentTypeResponse(response: IBaseResponse): ContentTypeResponses.ViewContentTypeResponse; mapAddContentTypeResponse(response: IBaseResponse): ContentTypeResponses.AddContentTypeResponse; private mapContentType; } export declare const contentTypeMapper: ContentTypeMapper;