import { Warehouse, WarehouseProfile } from '~backend/business/business.model'; import { WarehouseService } from '~backend/business/warehouse/warehouse.service'; import { BusinessCouchdbService } from '~backend/business/business-couchdb/business-couchdb.service'; export declare class WarehouseController { private readonly warehouseService; private readonly businessCouchdbService; constructor(warehouseService: WarehouseService, businessCouchdbService: BusinessCouchdbService); getWarehouse(businessId: string): Promise; updateProfile(warehouseId: string, profile: WarehouseProfile): Promise; delete(warehouseId: string): Promise; }