import { Service } from "../serviceSDK"; export declare class WarehouseServiceV2 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; getInventory(warehouseId: string, data: any[]): Promise; getInfoWarehouse(warehouseId: string): Promise; }