// Copyright © 2022-2026 Partium, Inc. DBA Partium /** * Meta data information to define the purpose of an image */ export declare enum CatalogImageInfo { /** * Image is used a reference image for searching */ SEARCHABLE = "searchable", /** * Image is displayed with the corresponding part in the user interface */ DISPLAY = "display", /** * Image is used a reference image for searching and displayed with the corresponding part in the user interface */ SEARCHABLE_AND_DISPLAY = "searchable display" }