import { IResponse } from '@kontent-ai/core-sdk'; import { ContentTypeSnippetContracts } from '../contracts'; import { ContentTypeSnippetModels } from '../models'; import { ContentTypeSnippetResponses } from '../responses'; import { BaseMapper } from './base-mapper'; export declare class ContentTypeSnippetMapper extends BaseMapper { mapListingResponse(response: IResponse): ContentTypeSnippetResponses.ContentTypeSnippetListResponse; mapViewContentTypeSnippetResponse(response: IResponse): ContentTypeSnippetResponses.ViewContentTypeSnippetResponse; mapAddContentTypeSnippetResponse(response: IResponse): ContentTypeSnippetResponses.AddContentTypeSnippetResponse; mapModifyContentTypeSnippetResponse(response: IResponse): ContentTypeSnippetResponses.AddContentTypeSnippetResponse; mapContentTypeSnippet(rawContentType: ContentTypeSnippetContracts.IContentTypeSnippetContract): ContentTypeSnippetModels.ContentTypeSnippet; } export declare const contentTypeSnippetMapper: ContentTypeSnippetMapper;