import BaseItemModel from '../../Abstract/BaseItemModel.js'; import BaseModel from '../../Abstract/BaseModel.js'; declare class FieldModel extends BaseModel { constructor(entities: any); } declare class FieldItemModel extends BaseItemModel { id: any; name: null; published: number; featured: number; custom_fields: null; created_user_name: null; created_time: null; publish_up: null; field_group_id: null; field_group_name: null; type: null; fieldcode: null; params: null; options: null; relevance: null; content_types: null; unique: null; constructor(entity: any); toObject: () => {}; toJSON: () => { created_date: null; modified_date: string; created_by: null; modified_by: null; }; static __transformItemToApiOfCreation: (data: any) => FormData; static __transformItemToApiOfUpdation: (data: any) => any; } export { FieldItemModel, FieldModel };