import BaseItemModel from '../../Abstract/BaseItemModel.js'; declare class ProductItemModel extends BaseItemModel { id: any; sku: any; title: any; alias: any; published: number; featured: number; category_id: null; category_name: null; custom_fields: any; created_user_name: null; modified_user_name: null; publish_up: null; related_categories: null; thumb_image: null; modified_time: null; constructor(entity: any); toObject: () => {}; isJsonString: (str: any) => boolean; toJSON: () => { created_date: null; modified_date: string; created_by: null; modified_by: null; }; static __transformItemToApiOfCreation: (data: any) => FormData; static __transformItemToApiOfUpdation: (data: any) => any; } export { ProductItemModel };