import { Service } from "../serviceSDK"; export declare class WarehouseService extends Service { /** * Constructs a new OrderService instance. * @param endpoint - The endpoint URL for the service. * @param orgId - The organization ID. * @param storeId - The store ID. */ constructor(endpoint: string, orgId: string, storeId: string); setToken(token: string): void; /** * get product inventory * @param warehouseId - the id of the warehouse * @param listProduct - list product * @returns A promise that resolves with the created order. * @throws If an error occurs while creating the order. */ getInventory(sku: string, warehouseId: string): Promise; }