import { ApiClientFactory } from '../core/api.client.factory'; import { Type, Warehouse, WarehouseList } from '../model/warehouse.model'; export declare class WarehouseService { private factory; constructor(factory: ApiClientFactory); getWarehouseList(projectId: string, type: Type): Promise; saveWarehouseInfo(projectId: string, type: Type, data: Warehouse): Promise; deleteWarehouseInfo(projectId: string, id: string): Promise; }