export declare class EquipmentType { id: number; name: string; checklistId: number; catId: number; code: string; static constructFromObjectJson(objectJson: any): EquipmentType; static constructFromMapEntry(mapEntry: any): EquipmentType; static constructEquipmentType(typeId: number, name: string): EquipmentType; }