import { AdjustSkuBalanceDto, ConvertSkuDto } from '~backend/inventory/inventory.model'; import { InventoryService } from '~backend/inventory/inventory.service'; import { InventoryAdjustmentDoc } from '~core/modules/inventory/definitions'; import { MenuV3Doc } from '~core/modules/menuV3/definitions'; import { StockDoc } from '~core/modules/stock'; import { BuildSkuMappingOption } from '~core/stockManager'; export declare class InventoryController { private readonly inventoryService; constructor(inventoryService: InventoryService); getMenu(): Promise; getRestaurantStockBalance(): Promise; getAdjustments(skuId: string, start: string, end: string): Promise; getSkuMappingOption(): Promise; getIngredientBalance(): Promise; adjustSkuBalance(body: AdjustSkuBalanceDto): Promise; converySku(body: ConvertSkuDto): Promise; }