/** Defines supported stock levels of the item inventory. */ export declare const SearchCatalogItemsRequestStockLevel: { readonly Out: "OUT"; readonly Low: "LOW"; }; export type SearchCatalogItemsRequestStockLevel = (typeof SearchCatalogItemsRequestStockLevel)[keyof typeof SearchCatalogItemsRequestStockLevel];