///
import { operations } from '../../../../types/restful/specs/commerce_taxonomy_v1_oas3.js';
import Restful, { OpenApi } from '../../index.js';
export default class Taxonomy extends Restful implements OpenApi {
static id: string;
get basePath(): string;
getDefaultCategoryTreeId(marketplaceId: string): Promise;
getCategoryTree(categoryTreeId: string): Promise;
getCategorySubtree(categoryTreeId: string, categoryId: string): Promise;
getCategorySuggestions(categoryTreeId: string, q: string): Promise;
getItemAspectsForCategory(categoryTreeId: string, categoryId: string): Promise;
getCompatibilityProperties(categoryTreeId: string, categoryId: string): Promise;
getCompatibilityPropertyValues(categoryTreeId: string, categoryId: string, compatibilityProperty: string): Promise;
fetchItemAspects(categoryTreeId: string): Promise;
}