export declare class EquipmentModel { modelId: number; modelName: string; categoryId: number; typeId: number; typeName: string; manufacturerId: number; static constructFromObjectJson(objectJson: any): EquipmentModel; static constructEquipmentModel(modelId: number, modelName: string): EquipmentModel; }