import BaseItemModel from '../../Abstract/BaseItemModel.js'; import BaseModel from '../../Abstract/BaseModel.js'; declare class ProductPriceModel extends BaseModel { constructor(entities: any); } declare class ProductPriceItemModel extends BaseItemModel { id: any; published: number; created_user_name: null; modified_time: null; custom_fields: null; products: null; featured: number; modified_user_name: null; created_time: null; debtor_groups: null; thumbImageUrl: null; constructor(entity: any); toJSON: () => { created_date: null; modified_date: string; created_by: null; modified_by: null; }; static __transformItemToApiOfCreation: (data: any) => FormData; static __transformItemToApiOfUpdation: (data: any) => any; } export { ProductPriceItemModel, ProductPriceModel };