import { Service } from "../serviceSDK"; export declare class MarketPlaceService extends Service { constructor(endpoint: string, orgId: string, storeId: string); createTag(name: string, slug: string, createdBy: string): Promise; searchTag(keyword: string, currentPage: number, maxResult: number): Promise; getTagsByProductId(productId: string): Promise; removeProductTag(productId: string, tagId: string, updatedBy: string, tagGroupId?: string): Promise; addProductTag(productId: string, tagId: string, createBy: string, tagGroupId?: string): Promise; getServiceExecutionLocation(dataQuery: any): Promise; searchUnLinkedServiceByPhone(phone: string): Promise; getSubServices(packageSubscriptionId: string): Promise; getPublicProduct(storeChannel: string, categoryId?: string, supplierId?: string): Promise; getServiceDetail(serviceId: string): Promise; }