declare class YouCanProductInventory { IncrementProductInventory(productId: string, productInventoryData: IProductInventory): Promise; DecrementProductInventory(productId: string, productInventoryData: IProductInventory): Promise; } export default YouCanProductInventory;