import { ContentTypeContracts } from '../../contracts'; import { ContentTypeModels, SharedModels } from '../../models'; import { BaseResponses } from '../base-responses'; export declare namespace ContentTypeResponses { class ContentTypeListResponse extends BaseResponses.BaseContentManagementResponse { constructor(debug: BaseResponses.IContentManagementResponseDebug, rawData: ContentTypeContracts.IContentTypeListResponseContract, data: { types: ContentTypeModels.ContentType[]; pagination: SharedModels.Pagination; }); } class ViewContentTypeResponse extends BaseResponses.BaseContentManagementResponse { constructor(debug: BaseResponses.IContentManagementResponseDebug, rawData: ContentTypeContracts.IViewContentTypeResponseContract, data: ContentTypeModels.ContentType); } class AddContentTypeResponse extends BaseResponses.BaseContentManagementResponse { constructor(debug: BaseResponses.IContentManagementResponseDebug, rawData: ContentTypeContracts.IAddContentTypeResponseContract, data: ContentTypeModels.ContentType); } class DeleteContentTypeResponse extends BaseResponses.BaseContentManagementResponse { constructor(debug: BaseResponses.IContentManagementResponseDebug, rawData: ContentTypeContracts.IDeleteContentTypeResponseContract, data: undefined); } }