import BaseItemModel from '../../Abstract/BaseItemModel.js'; import BaseModel from '../../Abstract/BaseModel.js'; declare class ContentTypeModel extends BaseModel { constructor(entities: any); } declare class ContentTypeItemModel extends BaseItemModel { id: any; check: boolean; engagement: string; languages: string; name: string; status: string; type: string; visits: string; title: string; constructor(entity: any); toObject: () => {}; toJSON: () => { title: string; created_date: null; modified_date: string; created_by: null; modified_by: null; }; static __transformItemToApiOfCreation: (data: any) => FormData; } export { ContentTypeItemModel, ContentTypeModel };