import BaseItemModel from '../Abstract/BaseItemModel.js'; import BaseModel from '../Abstract/BaseModel.js'; declare class ColectionModel extends BaseModel { constructor(entities: any); } declare class CollectionItemModel extends BaseItemModel { id: any; parent_id: null; name: string; file_size: number; owner: 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; static __transformItemToApiOfDelete: (data: any) => string; static __transformItemToApiOfMoveToFolder: (data: any) => FormData; static __transformItemToApiOfDownload: (data: any) => FormData; } declare class AssetsModel extends BaseModel { constructor(entities: any); } declare class AssetsItemModel extends BaseItemModel { id: any; collection_id: null; name: null; alias: any; uuid: null; file_extention: null; file_size: any; file_mine_type: null; type_id: null; type: null; download_url: null; owner: 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; static __transformItemToApiOfDelete: (data: any) => string; } declare class SubscriptionModel extends BaseModel { constructor(entities: any); } declare class SubsctiptionItemModel extends BaseItemModel { id: any; product: any; product_type: null; product_option: null; product_storage_usage: null; license: null; package: any; package_name: null; package_storage_limit: null; constructor(entity: any); toObject: () => {}; toJSON: () => { created_date: null; modified_date: string; created_by: null; modified_by: null; }; } export { AssetsItemModel, AssetsModel, ColectionModel, CollectionItemModel, SubscriptionModel, SubsctiptionItemModel };