declare class BaseItemModel { id: number; title: string; createdBy: null; modifiedBy: null; createdDate: null; modifiedDate: null; alias: string; featured: number; customfieldValues: null; constructor(entity: any); getId: () => number; getTitle: () => string; getCreatedBy: () => null; getModifiedBy: () => null; getCreatedDate: () => string; getModifiedDate: () => string; getAlias: () => string; getFeatured: () => number; getCustomfieldValues: () => null; setTitle: (title: string) => string; baseToJSON: () => { created_date: null; modified_date: string; created_by: null; modified_by: null; }; } export { BaseItemModel as default };