import { InventoryItem } from "../../graphql/__generated__/types"; declare type RemoveRequest = { id: number; }; export declare function remove(userId: string, { id }: RemoveRequest): Promise; declare type RestoreRequest = { id: number; }; export declare function restore(userId: string, { id }: RestoreRequest): Promise; export {};