import { Service } from "../serviceSDK"; export declare class CloudCloudService extends Service { constructor(endpoint: string, orgId: string, storeId: string); searchService(data: any): Promise; serviceDetail(serviceId: string): Promise; updateDescription(serviceId: string, description: string, updatedBy: string): Promise; searchServiceByPhone(phone: string, serviceScope: string): Promise; getListLabService(productId: string): Promise; updateServiceResource(data: Record): Promise; countAvailableBookings(serviceId: string): Promise; recountUsedBookings(serviceId: string, actorId: string): Promise; linkUserAccount(ownerId: string, serviceId: string): Promise; }