import { InventoryItem, InventoryItemUpdateInput, InventoryItemStatus } from "../../graphql/__generated__/types"; export declare function update(userId: string, { id, update, }: { id: number; update: InventoryItemUpdateInput; }): Promise; export declare function updateStatus(userId: string, ids: number[], status: InventoryItemStatus, returnValues?: boolean): Promise; export declare function updateStatusForDate(userId: string, date: string, status: InventoryItemStatus): Promise;