import { ContentTypeModel } from './CMSContentTypeModel.js'; import '../../Abstract/BaseItemModel.js'; import '../../Abstract/BaseModel.js'; declare class AesirxCmsContentTypeApiService { route: any; constructor(); getList: () => Promise; create: (data: any) => Promise; update: (data: any) => Promise; getDetail: (id?: number) => Promise<{ title: string; created_date: null; modified_date: string; created_by: null; modified_by: null; } | { message: string; } | null>; } export { AesirxCmsContentTypeApiService as default };