import { AddCartItemInput, BuyBrowseGetItemsParams, BuyBrowseItemByLegacyIdParams, BuyBrowseSearchByImageParams, BuyBrowseSearchParams, CompatibilityPayload, RemoveCartItemInput, SearchByImageRequest, UpdateCartItemInput } from '../../../../types/index.js'; import { operations } from '../../../../types/restful/specs/buy_browse_v1_oas3.js'; import Restful, { OpenApi } from '../../index.js'; export default class Browse extends Restful implements OpenApi { static id: string; get basePath(): string; search(params: BuyBrowseSearchParams): Promise; searchByImage(params: BuyBrowseSearchByImageParams, body?: SearchByImageRequest): Promise; getItems(params: BuyBrowseGetItemsParams): Promise; getItem(itemId: string, fieldgroups?: string): Promise; getItemByLegacyId(params: BuyBrowseItemByLegacyIdParams): Promise; getItemsByItemGroup(itemGroupId: string): Promise; checkCompatibility(itemId: string, body?: CompatibilityPayload): Promise; addItem(item: AddCartItemInput): Promise; getShoppingCart(): Promise; removeItem(item: RemoveCartItemInput): Promise; updateQuantity(item: UpdateCartItemInput): Promise; }